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

Unified Diff: components/test_runner/app_banner_service.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
Index: components/test_runner/app_banner_service.cc
diff --git a/components/test_runner/app_banner_service.cc b/components/test_runner/app_banner_service.cc
index 37ce9d14ffff4b3ef0a670b3a99731948e227259..6684437822e540ff68cbe7a21c65bc777cc8a787 100644
--- a/components/test_runner/app_banner_service.cc
+++ b/components/test_runner/app_banner_service.cc
@@ -28,9 +28,9 @@ void AppBannerService::SendBannerPromptRequest(
return;
controller_->BannerPromptRequest(
- binding_.CreateInterfacePtrAndBind(), mojo::GetProxy(&event_), platforms,
- base::Bind(&AppBannerService::OnBannerPromptReply, base::Unretained(this),
- callback));
+ binding_.CreateInterfacePtrAndBind(), mojo::MakeRequest(&event_),
+ platforms, base::Bind(&AppBannerService::OnBannerPromptReply,
+ base::Unretained(this), callback));
}
void AppBannerService::DisplayAppBanner() { /* do nothing */ }

Powered by Google App Engine
This is Rietveld 408576698