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 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_FACTORY_OZONE_WAYLAND_H_ | |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_FACTORY_OZONE_WAYLAND_H_ | |
| 7 | |
| 8 #include "ui/views/widget/desktop_aura/desktop_factory_ozone.h" | |
| 9 | |
| 10 namespace display { | |
| 11 class Screen; | |
| 12 } | |
| 13 | |
| 14 namespace gfx { | |
| 15 class Rect; | |
| 16 } | |
| 17 | |
| 18 namespace views { | |
| 19 class DesktopNativeWidgetAura; | |
| 20 class DesktopWindowTreeHost; | |
| 21 | |
| 22 namespace internal { | |
| 23 class NativeWidgetDelegate; | |
| 24 } | |
| 25 | |
| 26 class VIEWS_EXPORT DesktopFactoryOzoneWayland : public DesktopFactoryOzone { | |
|
tonikitoo
2016/06/06 15:29:59
For the record, it duplicates https://codereview.c
| |
| 27 public: | |
| 28 DesktopFactoryOzoneWayland(); | |
| 29 ~DesktopFactoryOzoneWayland() override; | |
| 30 | |
| 31 DesktopWindowTreeHost* CreateWindowTreeHost( | |
| 32 internal::NativeWidgetDelegate* native_widget_delegate, | |
| 33 DesktopNativeWidgetAura* desktop_native_widget_aura) override; | |
| 34 | |
| 35 display::Screen* CreateDesktopScreen() override; | |
| 36 }; | |
| 37 | |
| 38 } // namespace views | |
| 39 | |
| 40 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_FACTORY_OZONE_WAYLAND_H_ | |
| OLD | NEW |