Chromium Code Reviews| 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 "ui/views/widget/desktop_aura/desktop_factory_wayland.h" | |
| 6 | |
| 7 #include "ui/views/widget/desktop_aura/desktop_screen_wayland.h" | |
| 8 #include "ui/views/widget/desktop_aura/desktop_window_tree_host_wayland.h" | |
| 9 | |
| 10 namespace display { | |
| 11 class Screen; | |
| 12 } | |
| 13 | |
| 14 namespace views { | |
| 15 | |
| 16 DesktopFactoryOzoneWayland::DesktopFactoryOzoneWayland() { | |
|
tonikitoo
2016/06/06 15:29:59
For the record, this duplicates https://codereview
joone
2016/06/06 18:22:22
Acknowledged.
| |
| 17 } | |
| 18 | |
| 19 DesktopFactoryOzoneWayland::~DesktopFactoryOzoneWayland() { | |
| 20 } | |
| 21 | |
| 22 DesktopWindowTreeHost* DesktopFactoryOzoneWayland::CreateWindowTreeHost( | |
| 23 internal::NativeWidgetDelegate* native_widget_delegate, | |
| 24 DesktopNativeWidgetAura* desktop_native_widget_aura) { | |
| 25 return new DesktopWindowTreeHostWayland(native_widget_delegate, | |
| 26 desktop_native_widget_aura); | |
| 27 } | |
| 28 | |
| 29 display::Screen* DesktopFactoryOzoneWayland::CreateDesktopScreen() { | |
| 30 return new DesktopScreenWayland(); | |
| 31 } | |
| 32 | |
| 33 } // namespace views | |
| OLD | NEW |