summaryrefslogtreecommitdiff
path: root/chromium/ui/gfx/ca_layer_params.cc
blob: 1824bc5a86bc2eb4b7df83da836e3c0a4de8ef51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gfx/ca_layer_params.h"

namespace gfx {

CALayerParams::CALayerParams() {}
CALayerParams::~CALayerParams() = default;
CALayerParams::CALayerParams(CALayerParams&& params) = default;
CALayerParams::CALayerParams(const CALayerParams& params) = default;
CALayerParams& CALayerParams::operator=(CALayerParams&& params) = default;
CALayerParams& CALayerParams::operator=(const CALayerParams& params) = default;

}  // namespace gfx