platform_window_init_properties.cc 641 B

1234567891011121314151617181920
  1. // Copyright 2018 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/platform_window/platform_window_init_properties.h"
  5. namespace ui {
  6. PlatformWindowInitProperties::PlatformWindowInitProperties() = default;
  7. PlatformWindowInitProperties::PlatformWindowInitProperties(
  8. const gfx::Rect& bounds)
  9. : bounds(bounds) {}
  10. PlatformWindowInitProperties::PlatformWindowInitProperties(
  11. PlatformWindowInitProperties&& props) = default;
  12. PlatformWindowInitProperties::~PlatformWindowInitProperties() = default;
  13. } // namespace ui