Index: content/browser/geolocation/geolocation_dispatcher_host.h |
=================================================================== |
--- content/browser/geolocation/geolocation_dispatcher_host.h (revision 163741) |
+++ content/browser/geolocation/geolocation_dispatcher_host.h (working copy) |
@@ -8,22 +8,24 @@ |
#include "content/public/browser/browser_message_filter.h" |
namespace content { |
+ |
class GeolocationPermissionContext; |
-} |
// GeolocationDispatcherHost is a browser filter for Geolocation messages. |
// It's the complement of GeolocationDispatcher (owned by RenderView). |
-class GeolocationDispatcherHost : public content::BrowserMessageFilter { |
+class GeolocationDispatcherHost : public BrowserMessageFilter { |
public: |
static GeolocationDispatcherHost* New( |
int render_process_id, |
content::GeolocationPermissionContext* geolocation_permission_context); |
protected: |
- GeolocationDispatcherHost() {} |
- virtual ~GeolocationDispatcherHost() {} |
+ GeolocationDispatcherHost(); |
+ virtual ~GeolocationDispatcherHost(); |
DISALLOW_COPY_AND_ASSIGN(GeolocationDispatcherHost); |
}; |
+} // namespace content |
+ |
#endif // CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_DISPATCHER_HOST_H_ |