ca_layer_params.cc 606 B

12345678910111213141516
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "ui/gfx/ca_layer_params.h"
  5. namespace gfx {
  6. CALayerParams::CALayerParams() {}
  7. CALayerParams::~CALayerParams() = default;
  8. CALayerParams::CALayerParams(CALayerParams&& params) = default;
  9. CALayerParams::CALayerParams(const CALayerParams& params) = default;
  10. CALayerParams& CALayerParams::operator=(CALayerParams&& params) = default;
  11. CALayerParams& CALayerParams::operator=(const CALayerParams& params) = default;
  12. } // namespace gfx