diff options
Diffstat (limited to 'chrome/renderer/geolocation_dispatcher_old.h')
-rw-r--r-- | chrome/renderer/geolocation_dispatcher_old.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/chrome/renderer/geolocation_dispatcher_old.h b/chrome/renderer/geolocation_dispatcher_old.h index 51567ef..57f7d8a 100644 --- a/chrome/renderer/geolocation_dispatcher_old.h +++ b/chrome/renderer/geolocation_dispatcher_old.h @@ -6,10 +6,6 @@ #define CHROME_RENDERER_GEOLOCATION_DISPATCHER_OLD_H_ #pragma once -#if !defined(ENABLE_CLIENT_BASED_GEOLOCATION) -// TODO(jknotten): Remove this class once the new client-based implementation is -// checked in (see http://crbug.com/59908). - #include "base/basictypes.h" #include "base/id_map.h" #include "ipc/ipc_message.h" @@ -25,6 +21,8 @@ struct Geoposition; // It's the complement of GeolocationDispatcherHostOld (owned by // RenderViewHost). +// TODO(jknotten): Remove this class once the new client-based implementation is +// checked in (see http://crbug.com/59908). class GeolocationDispatcherOld : public WebKit::WebGeolocationService { public: explicit GeolocationDispatcherOld(RenderView* render_view); @@ -63,6 +61,4 @@ class GeolocationDispatcherOld : public WebKit::WebGeolocationService { DISALLOW_COPY_AND_ASSIGN(GeolocationDispatcherOld); }; -#endif // ENABLE_CLIENT_BASED_GEOLOCATION - #endif // CHROME_RENDERER_GEOLOCATION_DISPATCHER_OLD_H_ |