| Index: android_webview/native/aw_geolocation_permission_context.cc
|
| diff --git a/android_webview/native/aw_geolocation_permission_context.cc b/android_webview/native/aw_geolocation_permission_context.cc
|
| index 3c2481ce36817cc330d73ee90def5a9cea96a077..b68608a5d0b91b1c43ae646fc58a08a7f3323dbd 100644
|
| --- a/android_webview/native/aw_geolocation_permission_context.cc
|
| +++ b/android_webview/native/aw_geolocation_permission_context.cc
|
| @@ -22,6 +22,7 @@ AwGeolocationPermissionContext::RequestGeolocationPermissionOnUIThread(
|
| int render_view_id,
|
| int bridge_id,
|
| const GURL& requesting_frame,
|
| + bool user_gesture,
|
| base::Callback<void(bool)> callback) {
|
| DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
|
|
|
| @@ -40,6 +41,7 @@ AwGeolocationPermissionContext::RequestGeolocationPermission(
|
| int render_view_id,
|
| int bridge_id,
|
| const GURL& requesting_frame,
|
| + bool user_gesture,
|
| base::Callback<void(bool)> callback) {
|
| content::BrowserThread::PostTask(
|
| content::BrowserThread::UI, FROM_HERE,
|
| @@ -51,6 +53,7 @@ AwGeolocationPermissionContext::RequestGeolocationPermission(
|
| render_view_id,
|
| bridge_id,
|
| requesting_frame,
|
| + user_gesture,
|
| callback));
|
| }
|
|
|
|
|