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

Unified Diff: services/ui/ws/window_server.cc

Issue 2386763002: services/ui: Match naming in cc (and jellyfish branch) (Closed)
Patch Set: Removed bad change Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/ui/ws/window_server.h ('k') | services/ui/ws/window_tree_host_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/window_server.cc
diff --git a/services/ui/ws/window_server.cc b/services/ui/ws/window_server.cc
index 1a878b9e82e868888fcc0feb71e5bda6249237b8..0cc75afee9360603bd539d05a91e33e9086efdbc 100644
--- a/services/ui/ws/window_server.cc
+++ b/services/ui/ws/window_server.cc
@@ -46,7 +46,7 @@ struct WindowServer::CurrentDragLoopState {
WindowServer::WindowServer(WindowServerDelegate* delegate)
: delegate_(delegate),
- surfaces_state_(new SurfacesState()),
+ display_compositor_(new DisplayCompositor()),
next_client_id_(1),
display_manager_(new DisplayManager(this, &user_id_tracker_)),
current_operation_(nullptr),
@@ -529,8 +529,8 @@ WindowManagerState* WindowServer::GetWindowManagerStateForUser(
user_id);
}
-ui::SurfacesState* WindowServer::GetSurfacesState() {
- return surfaces_state_.get();
+ui::DisplayCompositor* WindowServer::GetDisplayCompositor() {
+ return display_compositor_.get();
}
bool WindowServer::GetFrameDecorationsForUser(
« no previous file with comments | « services/ui/ws/window_server.h ('k') | services/ui/ws/window_tree_host_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698