Index: content/browser/web_contents/web_contents_impl.h |
=================================================================== |
--- content/browser/web_contents/web_contents_impl.h (revision 269778) |
+++ 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; |
@@ -160,6 +161,10 @@ |
WebContentsView* GetView() const; |
+ GeolocationDispatcherHost* geolocation_dispatcher_host() { |
+ return geolocation_dispatcher_host_.get(); |
+ } |
+ |
// WebContents ------------------------------------------------------ |
virtual WebContentsDelegate* GetDelegate() OVERRIDE; |
virtual void SetDelegate(WebContentsDelegate* delegate) OVERRIDE; |
@@ -1092,6 +1097,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); |
}; |