Index: content/browser/web_contents/web_contents_impl.h |
=================================================================== |
--- content/browser/web_contents/web_contents_impl.h (revision 269342) |
+++ 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 JavaBridgeDispatcherHostManager; |
class JavaScriptDialogManager; |
@@ -172,6 +173,10 @@ |
WebContentsView* GetView() const; |
+ GeolocationDispatcherHost* geolocation_dispatcher_host() { |
+ return geolocation_dispatcher_host_.get(); |
+ } |
+ |
// WebContents ------------------------------------------------------ |
virtual WebContentsDelegate* GetDelegate() OVERRIDE; |
virtual void SetDelegate(WebContentsDelegate* delegate) OVERRIDE; |
@@ -1109,6 +1114,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); |
}; |