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

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

Issue 2589663003: mojo:: Rename mojo::GetProxy() to mojo::MakeRequest() (Closed)
Patch Set: Rebase Created 4 years 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.cc ('k') | services/ui/ws/window_tree_client_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/window_tree_binding.cc
diff --git a/services/ui/ws/window_tree_binding.cc b/services/ui/ws/window_tree_binding.cc
index 39e382553f7469b1c7588e0b1fe9c921d5eda75b..97c3953da84dc11f6c06d4dce6a082a1eb69189f 100644
--- a/services/ui/ws/window_tree_binding.cc
+++ b/services/ui/ws/window_tree_binding.cc
@@ -50,7 +50,7 @@ mojom::WindowTreePtr DefaultWindowTreeBinding::CreateInterfacePtrAndBind() {
mojom::WindowManager* DefaultWindowTreeBinding::GetWindowManager() {
client_->GetWindowManager(
- GetProxy(&window_manager_internal_, client_.associated_group()));
+ MakeRequest(&window_manager_internal_, client_.associated_group()));
return window_manager_internal_.get();
}
@@ -64,7 +64,7 @@ void DefaultWindowTreeBinding::SetIncomingMethodCallProcessingPaused(
mojom::WindowTreeClient* DefaultWindowTreeBinding::CreateClientForShutdown() {
client_.reset();
- GetProxy(&client_);
+ MakeRequest(&client_);
return client_.get();
}
« no previous file with comments | « services/ui/ws/window_server.cc ('k') | services/ui/ws/window_tree_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698