| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 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 | |
| 5 #include "components/mus/ws/platform_display_init_params.h" | |
| 6 | |
| 7 #include "components/mus/gles2/gpu_state.h" | |
| 8 #include "components/mus/surfaces/surfaces_state.h" | |
| 9 | |
| 10 namespace mus { | |
| 11 namespace ws { | |
| 12 | |
| 13 PlatformDisplayInitParams::PlatformDisplayInitParams() | |
| 14 : display_bounds(gfx::Rect(0, 0, 1024, 768)), display_id(1) {} | |
| 15 | |
| 16 PlatformDisplayInitParams::PlatformDisplayInitParams( | |
| 17 const PlatformDisplayInitParams& other) = default; | |
| 18 PlatformDisplayInitParams::~PlatformDisplayInitParams() {} | |
| 19 | |
| 20 } // namespace ws | |
| 21 } // namespace mus | |
| OLD | NEW |