Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(332)

Side by Side Diff: ui/views/widget/desktop_aura/desktop_factory_wayland.h

Issue 2027943002: [WIP] Make content_shell run under Wayland Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698