| Index: content/browser/web_contents/web_contents_impl.h
|
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
|
| index af92cf43bf7a8709ec7409b1a66a7f324f28b03d..1162e58ecfa50a64969ab29a05368cab8dc51b67 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -57,7 +57,6 @@ class BrowserPluginGuest;
|
| class DateTimeChooserAndroid;
|
| class DownloadItem;
|
| class FindRequestManager;
|
| -class GeolocationServiceContext;
|
| class InterstitialPageImpl;
|
| class JavaScriptDialogManager;
|
| class LoaderIOThreadNotifier;
|
| @@ -454,7 +453,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| RenderFrameHost* GetGuestByInstanceID(
|
| RenderFrameHost* render_frame_host,
|
| int browser_plugin_instance_id) override;
|
| - GeolocationServiceContext* GetGeolocationServiceContext() override;
|
| + device::GeolocationServiceContext* GetGeolocationServiceContext() override;
|
| WakeLockServiceContext* GetWakeLockServiceContext() override;
|
| void EnterFullscreenMode(const GURL& origin) override;
|
| void ExitFullscreenMode(bool will_cause_resize) override;
|
| @@ -1348,7 +1347,8 @@ class CONTENT_EXPORT WebContentsImpl
|
| // Whether the last JavaScript dialog shown was suppressed. Used for testing.
|
| bool last_dialog_suppressed_;
|
|
|
| - std::unique_ptr<GeolocationServiceContext> geolocation_service_context_;
|
| + std::unique_ptr<device::GeolocationServiceContext>
|
| + geolocation_service_context_;
|
|
|
| std::unique_ptr<WakeLockServiceContext> wake_lock_service_context_;
|
|
|
|
|