| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index 734bd648622910c5b38e8b5d32d85f8c8f7da74b..ac2bf35aab279c7f7d61ea5ec3007be75c6dee28 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -144,6 +144,7 @@
|
| #include "content/public/browser/child_process_data.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"
|
| @@ -628,8 +629,7 @@ class SafeBrowsingSSLCertReporter : public SSLCertReporter {
|
| };
|
|
|
| // A provider of Geolocation services to override AccessTokenStore.
|
| -class ChromeGeolocationDelegate
|
| - : public content::GeolocationProvider::Delegate {
|
| +class ChromeGeolocationDelegate : public content::GeolocationDelegate {
|
| public:
|
| ChromeGeolocationDelegate() = default;
|
|
|
| @@ -2259,7 +2259,7 @@ net::NetLog* ChromeContentBrowserClient::GetNetLog() {
|
| return g_browser_process->net_log();
|
| }
|
|
|
| -content::GeolocationProvider::Delegate*
|
| +content::GeolocationDelegate*
|
| ChromeContentBrowserClient::CreateGeolocationDelegate() {
|
| return new ChromeGeolocationDelegate();
|
| }
|
|
|