Chromium Code Reviews| Index: content/common/geolocation_messages.h |
| =================================================================== |
| --- content/common/geolocation_messages.h (revision 269041) |
| +++ content/common/geolocation_messages.h (working copy) |
| @@ -42,33 +42,28 @@ |
| // Messages sent from the renderer to the browser. |
| -// The |render_view_id| and |bridge_id| representing |host| is requesting |
| -// permission to access geolocation position. |
| -// This will be replied by GeolocationMsg_PermissionSet. |
| -IPC_MESSAGE_CONTROL4(GeolocationHostMsg_RequestPermission, |
| - int /* render_view_id */, |
| +// The |bridge_id| representing |host| is requesting permission to access |
|
Michael van Ouwerkerk
2014/05/08 13:20:02
Judging from the comment for the next message: s/h
jam
2014/05/08 15:04:58
I'm guessing that comment was meant to refer to th
|
| +// geolocation position. This will be replied by GeolocationMsg_PermissionSet. |
| +IPC_MESSAGE_ROUTED3(GeolocationHostMsg_RequestPermission, |
| int /* bridge_id */, |
| GURL /* GURL of the frame requesting geolocation */, |
| bool /* user_gesture */) |
| -// The |render_view_id| and |bridge_id| representing |GURL| is cancelling its |
| -// previous permission request to access geolocation position. |
| -IPC_MESSAGE_CONTROL3(GeolocationHostMsg_CancelPermissionRequest, |
| - int /* render_view_id */, |
| - int /* bridge_id */, |
| - GURL /* GURL of the frame */) |
| +// 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_id| requests Geolocation service to start updating. |
| +// 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_CONTROL3(GeolocationHostMsg_StartUpdating, |
| - int /* render_view_id */, |
| +IPC_MESSAGE_ROUTED2(GeolocationHostMsg_StartUpdating, |
| GURL /* GURL of the frame requesting geolocation */, |
| bool /* enable_high_accuracy */) |
| -// The |render_view_id| requests Geolocation service to stop updating. |
| +// The render view requests Geolocation service to stop updating. |
| // Note that the geolocation service may continue to fetch geolocation data |
| // for other origins. |
| -IPC_MESSAGE_CONTROL1(GeolocationHostMsg_StopUpdating, |
| - int /* render_view_id */) |
| +IPC_MESSAGE_ROUTED0(GeolocationHostMsg_StopUpdating) |