| Index: android_webview/browser/aw_content_browser_client.cc
|
| diff --git a/android_webview/browser/aw_content_browser_client.cc b/android_webview/browser/aw_content_browser_client.cc
|
| index 9176b0babe42ee6dd0e7f62820b5d3b39c3df217..3e80dfeabf798ed8d346d514baf791b5ba210b70 100644
|
| --- a/android_webview/browser/aw_content_browser_client.cc
|
| +++ b/android_webview/browser/aw_content_browser_client.cc
|
| @@ -37,6 +37,7 @@
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/child_process_security_policy.h"
|
| #include "content/public/browser/client_certificate_delegate.h"
|
| +#include "content/public/browser/geolocation_delegate.h"
|
| #include "content/public/browser/navigation_handle.h"
|
| #include "content/public/browser/navigation_throttle.h"
|
| #include "content/public/browser/render_frame_host.h"
|
| @@ -161,7 +162,7 @@ class AwAccessTokenStore : public content::AccessTokenStore {
|
| };
|
|
|
| // A provider of Geolocation services to override AccessTokenStore.
|
| -class AwGeolocationDelegate : public content::GeolocationProvider::Delegate {
|
| +class AwGeolocationDelegate : public content::GeolocationDelegate {
|
| public:
|
| AwGeolocationDelegate() = default;
|
|
|
| @@ -441,7 +442,7 @@ net::NetLog* AwContentBrowserClient::GetNetLog() {
|
| return browser_context_->GetAwURLRequestContext()->GetNetLog();
|
| }
|
|
|
| -content::GeolocationProvider::Delegate*
|
| +content::GeolocationDelegate*
|
| AwContentBrowserClient::CreateGeolocationDelegate() {
|
| return new AwGeolocationDelegate();
|
| }
|
|
|