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

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

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 #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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698