diff options
Diffstat (limited to 'content/renderer/geolocation_dispatcher.h')
-rw-r--r-- | content/renderer/geolocation_dispatcher.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/content/renderer/geolocation_dispatcher.h b/content/renderer/geolocation_dispatcher.h index 53f45be..7ce2b6a 100644 --- a/content/renderer/geolocation_dispatcher.h +++ b/content/renderer/geolocation_dispatcher.h @@ -10,12 +10,6 @@ #include "third_party/WebKit/Source/WebKit/chromium/public/WebGeolocationClient.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebGeolocationController.h" -class RenderViewImpl; - -namespace content { -struct Geoposition; -} - namespace WebKit { class WebGeolocationController; class WebGeolocationPermissionRequest; @@ -23,10 +17,14 @@ class WebGeolocationPermissionRequestManager; class WebGeolocationPosition; } +namespace content { +class RenderViewImpl; +struct Geoposition; + // GeolocationDispatcher is a delegate for Geolocation messages used by // WebKit. // It's the complement of GeolocationDispatcherHost (owned by RenderViewHost). -class GeolocationDispatcher : public content::RenderViewObserver, +class GeolocationDispatcher : public RenderViewObserver, public WebKit::WebGeolocationClient { public: explicit GeolocationDispatcher(RenderViewImpl* render_view); @@ -65,4 +63,6 @@ class GeolocationDispatcher : public content::RenderViewObserver, bool updating_; }; +} // namespace content + #endif // CONTENT_RENDERER_GEOLOCATION_DISPATCHER_H_ |