Index: content/common/geolocation_messages.h |
diff --git a/content/common/geolocation_messages.h b/content/common/geolocation_messages.h |
index 55b4bd7736825cec9404e2d0402597a0d273d118..c016bf02e7aa2efd19f2f330fadac59666d7deed 100644 |
--- a/content/common/geolocation_messages.h |
+++ b/content/common/geolocation_messages.h |
@@ -46,21 +46,15 @@ IPC_MESSAGE_ROUTED1(GeolocationMsg_PositionUpdated, |
// geolocation position. This will be replied by GeolocationMsg_PermissionSet. |
IPC_MESSAGE_ROUTED3(GeolocationHostMsg_RequestPermission, |
Charlie Reis
2014/10/07 21:35:35
nit: Same TODO. We should be using url::Origin or
mlamouri (slow - plz ping)
2014/10/08 09:24:33
Done.
|
int /* bridge_id */, |
- GURL /* GURL of the frame requesting geolocation */, |
+ GURL /* origin in the frame requesting geolocation */, |
bool /* user_gesture */) |
-// The |bridge_id| representing |GURL| is cancelling its previous permission |
-// request to access geolocation position. |
-IPC_MESSAGE_ROUTED2(GeolocationHostMsg_CancelPermissionRequest, |
- int /* bridge_id */, |
- GURL /* GURL of the frame */) |
- |
// The render view requests the Geolocation service to start updating. |
// This is an asynchronous call, and the browser process may eventually reply |
// with the updated geoposition, or an error (access denied, location |
// unavailable, etc.) |
IPC_MESSAGE_ROUTED2(GeolocationHostMsg_StartUpdating, |
- GURL /* GURL of the frame requesting geolocation */, |
+ GURL /* origin in the frame requesting geolocation */, |
bool /* enable_high_accuracy */) |
// The render view requests Geolocation service to stop updating. |