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

Unified Diff: third_party/WebKit/Source/modules/geolocation/Geolocation.cpp

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: third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
diff --git a/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp b/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
index 49d7723410676fc67692013404333f585f9f0c01..921da19d3f5694976eb85e2cd0396867a73da641 100644
--- a/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
+++ b/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
@@ -423,7 +423,7 @@ void Geolocation::requestPermission() {
m_geolocationPermission = PermissionRequested;
frame->interfaceProvider()->getInterface(
- mojo::GetProxy(&m_permissionService));
+ mojo::MakeRequest(&m_permissionService));
m_permissionService.set_connection_error_handler(
convertToBaseCallback(WTF::bind(&Geolocation::onPermissionConnectionError,
wrapWeakPersistent(this))));
@@ -495,7 +495,7 @@ void Geolocation::updateGeolocationServiceConnection() {
return;
frame()->interfaceProvider()->getInterface(
- mojo::GetProxy(&m_geolocationService));
+ mojo::MakeRequest(&m_geolocationService));
m_geolocationService.set_connection_error_handler(convertToBaseCallback(
WTF::bind(&Geolocation::onGeolocationConnectionError,
wrapWeakPersistent(this))));

Powered by Google App Engine
This is Rietveld 408576698