Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / common / geolocation_messages.h
index 55b4bd7..b66a191 100644 (file)
@@ -34,36 +34,13 @@ IPC_MESSAGE_ROUTED2(GeolocationMsg_PermissionSet,
                     int /* bridge_id */,
                     bool /* is_allowed */)
 
-// Sent after GeolocationHostMsg_StartUpdating iff the user has granted
-// permission and we have a position available or an error occurs (such as
-// permission denied, position unavailable, etc.)
-IPC_MESSAGE_ROUTED1(GeolocationMsg_PositionUpdated,
-                    content::Geoposition /* geoposition */)
-
 // Messages sent from the renderer to the browser.
 
 // The |bridge_id| representing |host| is requesting permission to access
 // geolocation position. This will be replied by GeolocationMsg_PermissionSet.
+// TODO(mlamouri): |origin| should be a security origin to guarantee that a
+// proper origin is passed.
 IPC_MESSAGE_ROUTED3(GeolocationHostMsg_RequestPermission,
                      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 */,
-                     bool /* enable_high_accuracy */)
-
-// 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_ROUTED0(GeolocationHostMsg_StopUpdating)