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

Side by Side Diff: components/mus/ws/client_connection.cc

Issue 1644773004: Renames some WindowManager classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 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
« no previous file with comments | « components/mus/ws/client_connection.h ('k') | components/mus/ws/default_access_policy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/mus/ws/client_connection.h" 5 #include "components/mus/ws/client_connection.h"
6 6
7 #include "components/mus/ws/connection_manager.h" 7 #include "components/mus/ws/connection_manager.h"
8 #include "components/mus/ws/window_tree_impl.h" 8 #include "components/mus/ws/window_tree_impl.h"
9 9
10 namespace mus { 10 namespace mus {
(...skipping 21 matching lines...) Expand all
32 DefaultClientConnection::~DefaultClientConnection() {} 32 DefaultClientConnection::~DefaultClientConnection() {}
33 33
34 void DefaultClientConnection::SetIncomingMethodCallProcessingPaused( 34 void DefaultClientConnection::SetIncomingMethodCallProcessingPaused(
35 bool paused) { 35 bool paused) {
36 if (paused) 36 if (paused)
37 binding_.PauseIncomingMethodCallProcessing(); 37 binding_.PauseIncomingMethodCallProcessing();
38 else 38 else
39 binding_.ResumeIncomingMethodCallProcessing(); 39 binding_.ResumeIncomingMethodCallProcessing();
40 } 40 }
41 41
42 mojom::WindowManagerInternal* 42 mojom::WindowManager* DefaultClientConnection::GetWindowManager() {
43 DefaultClientConnection::GetWindowManagerInternal() { 43 client_->GetWindowManager(
44 client_->GetWindowManagerInternal(
45 GetProxy(&window_manager_internal_, client_.associated_group())); 44 GetProxy(&window_manager_internal_, client_.associated_group()));
46 return window_manager_internal_.get(); 45 return window_manager_internal_.get();
47 } 46 }
48 47
49 } // namespace ws 48 } // namespace ws
50 } // namespace mus 49 } // namespace mus
OLDNEW
« no previous file with comments | « components/mus/ws/client_connection.h ('k') | components/mus/ws/default_access_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698