| Index: content/browser/web_contents/web_contents_impl.h
|
| ===================================================================
|
| --- content/browser/web_contents/web_contents_impl.h (revision 269041)
|
| +++ content/browser/web_contents/web_contents_impl.h (working copy)
|
| @@ -48,6 +48,7 @@
|
| class BrowserPluginGuestManager;
|
| class DateTimeChooserAndroid;
|
| class DownloadItem;
|
| +class GeolocationDispatcherHost;
|
| class InterstitialPageImpl;
|
| class JavaScriptDialogManager;
|
| class PowerSaveBlocker;
|
| @@ -167,6 +168,10 @@
|
|
|
| WebContentsView* GetView() const;
|
|
|
| + GeolocationDispatcherHost* geolocation_dispatcher_host() {
|
| + return geolocation_dispatcher_host_.get();
|
| + }
|
| +
|
| // WebContents ------------------------------------------------------
|
| virtual WebContentsDelegate* GetDelegate() OVERRIDE;
|
| virtual void SetDelegate(WebContentsDelegate* delegate) OVERRIDE;
|
| @@ -1096,6 +1101,8 @@
|
| // Whether the last JavaScript dialog shown was suppressed. Used for testing.
|
| bool last_dialog_suppressed_;
|
|
|
| + scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
|
| };
|
|
|
|
|