| Index: blimp/engine/app/blimp_content_browser_client.cc
|
| diff --git a/blimp/engine/app/blimp_content_browser_client.cc b/blimp/engine/app/blimp_content_browser_client.cc
|
| index 18999b79683092bdb7db4f44f2fbe1e4b6c173c9..6c4f55229bcec8eab63f8214196cc550adee61bd 100644
|
| --- a/blimp/engine/app/blimp_content_browser_client.cc
|
| +++ b/blimp/engine/app/blimp_content_browser_client.cc
|
| @@ -7,6 +7,7 @@
|
| #include "blimp/engine/app/settings_manager.h"
|
| #include "blimp/engine/feature/geolocation/blimp_location_provider.h"
|
| #include "blimp/engine/mojo/blob_channel_service.h"
|
| +#include "content/public/browser/geolocation_delegate.h"
|
| #include "services/shell/public/cpp/interface_registry.h"
|
|
|
| namespace blimp {
|
| @@ -14,7 +15,7 @@ namespace engine {
|
|
|
| namespace {
|
| // A provider of services needed by Geolocation.
|
| -class BlimpGeolocationDelegate : public content::GeolocationProvider::Delegate {
|
| +class BlimpGeolocationDelegate : public content::GeolocationDelegate {
|
| public:
|
| BlimpGeolocationDelegate() = default;
|
|
|
| @@ -62,7 +63,7 @@ BlimpBrowserContext* BlimpContentBrowserClient::GetBrowserContext() {
|
| return blimp_browser_main_parts_->GetBrowserContext();
|
| }
|
|
|
| -content::GeolocationProvider::Delegate*
|
| +content::GeolocationDelegate*
|
| BlimpContentBrowserClient::CreateGeolocationDelegate() {
|
| return new BlimpGeolocationDelegate();
|
| }
|
|
|