| Index: chrome/browser/guest_view/web_view/web_view_permission_helper.h
|
| diff --git a/chrome/browser/guest_view/web_view/web_view_permission_helper.h b/chrome/browser/guest_view/web_view/web_view_permission_helper.h
|
| index dd1231d4c08e630fbc09b70858d241b72f7eb54d..344feefdc7073c42031269f3ae42c361daae6d3f 100644
|
| --- a/chrome/browser/guest_view/web_view/web_view_permission_helper.h
|
| +++ b/chrome/browser/guest_view/web_view/web_view_permission_helper.h
|
| @@ -66,10 +66,11 @@ class WebViewPermissionHelper
|
| const base::Callback<void(bool)>& callback);
|
|
|
| // Requests Geolocation Permission from the embedder.
|
| - void RequestGeolocationPermission(int bridge_id,
|
| - const GURL& requesting_frame,
|
| - bool user_gesture,
|
| - const base::Callback<void(bool)>& callback);
|
| + void RequestGeolocationPermission(
|
| + int bridge_id,
|
| + const GURL& requesting_frame,
|
| + bool user_gesture,
|
| + const base::Callback<void(int, bool)>& callback);
|
| void CancelGeolocationPermissionRequest(int bridge_id);
|
|
|
| void RequestFileSystemPermission(const GURL& url,
|
| @@ -154,7 +155,7 @@ class WebViewPermissionHelper
|
| void OnGeolocationPermissionResponse(
|
| int bridge_id,
|
| bool user_gesture,
|
| - const base::Callback<void(bool)>& callback,
|
| + const base::Callback<void(int, bool)>& callback,
|
| bool allow,
|
| const std::string& user_input);
|
|
|
|
|