| Index: android_webview/native/aw_geolocation_permission_context.h
|
| ===================================================================
|
| --- android_webview/native/aw_geolocation_permission_context.h (revision 269041)
|
| +++ android_webview/native/aw_geolocation_permission_context.h (working copy)
|
| @@ -21,15 +21,13 @@
|
|
|
| // content::GeolocationPermissionContext implementation
|
| virtual void RequestGeolocationPermission(
|
| - int render_process_id,
|
| - int render_view_id,
|
| + content::WebContents* web_contents,
|
| int bridge_id,
|
| const GURL& requesting_frame,
|
| bool user_gesture,
|
| base::Callback<void(bool)> callback) OVERRIDE;
|
| virtual void CancelGeolocationPermissionRequest(
|
| - int render_process_id,
|
| - int render_view_id,
|
| + content::WebContents* web_contents,
|
| int bridge_id,
|
| const GURL& requesting_frame) OVERRIDE;
|
|
|
| @@ -37,19 +35,6 @@
|
| virtual ~AwGeolocationPermissionContext();
|
|
|
| private:
|
| - void RequestGeolocationPermissionOnUIThread(
|
| - int render_process_id,
|
| - int render_view_id,
|
| - int bridge_id,
|
| - const GURL& requesting_frame,
|
| - bool user_gesture,
|
| - base::Callback<void(bool)> callback);
|
| -
|
| - void CancelGeolocationPermissionRequestOnUIThread(
|
| - int render_process_id,
|
| - int render_view_id,
|
| - int bridge_id,
|
| - const GURL& requesting_frame);
|
| };
|
|
|
| } // namespace android_webview
|
|
|