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

Side by Side Diff: components/exo/wayland/server.cc

Issue 2632543003: Refactor and push window properties up to class properties. (Closed)
Patch Set: More build fixes Created 3 years, 10 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/exo/wayland/server.h" 5 #include "components/exo/wayland/server.h"
6 6
7 #include <alpha-compositing-unstable-v1-server-protocol.h> 7 #include <alpha-compositing-unstable-v1-server-protocol.h>
8 #include <gaming-input-unstable-v1-server-protocol.h> 8 #include <gaming-input-unstable-v1-server-protocol.h>
9 #include <grp.h> 9 #include <grp.h>
10 #include <keyboard-configuration-unstable-v1-server-protocol.h> 10 #include <keyboard-configuration-unstable-v1-server-protocol.h>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "components/exo/shared_memory.h" 56 #include "components/exo/shared_memory.h"
57 #include "components/exo/shell_surface.h" 57 #include "components/exo/shell_surface.h"
58 #include "components/exo/sub_surface.h" 58 #include "components/exo/sub_surface.h"
59 #include "components/exo/surface.h" 59 #include "components/exo/surface.h"
60 #include "components/exo/surface_property.h" 60 #include "components/exo/surface_property.h"
61 #include "components/exo/touch.h" 61 #include "components/exo/touch.h"
62 #include "components/exo/touch_delegate.h" 62 #include "components/exo/touch_delegate.h"
63 #include "components/exo/touch_stylus_delegate.h" 63 #include "components/exo/touch_stylus_delegate.h"
64 #include "components/exo/wm_helper.h" 64 #include "components/exo/wm_helper.h"
65 #include "third_party/skia/include/core/SkRegion.h" 65 #include "third_party/skia/include/core/SkRegion.h"
66 #include "ui/aura/window_property.h" 66 #include "ui/base/class_property.h"
67 #include "ui/base/hit_test.h" 67 #include "ui/base/hit_test.h"
68 #include "ui/base/ui_features.h" 68 #include "ui/base/ui_features.h"
69 #include "ui/compositor/compositor_vsync_manager.h" 69 #include "ui/compositor/compositor_vsync_manager.h"
70 #include "ui/display/display_observer.h" 70 #include "ui/display/display_observer.h"
71 #include "ui/display/manager/managed_display_info.h" 71 #include "ui/display/manager/managed_display_info.h"
72 #include "ui/display/screen.h" 72 #include "ui/display/screen.h"
73 #include "ui/events/keycodes/dom/keycode_converter.h" 73 #include "ui/events/keycodes/dom/keycode_converter.h"
74 #include "ui/gfx/buffer_format_util.h" 74 #include "ui/gfx/buffer_format_util.h"
75 #include "ui/gfx/buffer_types.h" 75 #include "ui/gfx/buffer_types.h"
76 #include "ui/views/widget/widget.h" 76 #include "ui/views/widget/widget.h"
(...skipping 3256 matching lines...) Expand 10 before | Expand all | Expand 10 after
3333 DCHECK(event_loop); 3333 DCHECK(event_loop);
3334 wl_event_loop_dispatch(event_loop, timeout.InMilliseconds()); 3334 wl_event_loop_dispatch(event_loop, timeout.InMilliseconds());
3335 } 3335 }
3336 3336
3337 void Server::Flush() { 3337 void Server::Flush() {
3338 wl_display_flush_clients(wl_display_.get()); 3338 wl_display_flush_clients(wl_display_.get());
3339 } 3339 }
3340 3340
3341 } // namespace wayland 3341 } // namespace wayland
3342 } // namespace exo 3342 } // namespace exo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698