#ifndef CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_DISPATCHER_HOST_H_
#define CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_DISPATCHER_HOST_H_
#include "content/public/browser/browser_message_filter.h"
namespace content {
class GeolocationPermissionContext;
}
class GeolocationDispatcherHost : public content::BrowserMessageFilter {
public:
static GeolocationDispatcherHost* New(
int render_process_id,
content::GeolocationPermissionContext* geolocation_permission_context);
protected:
GeolocationDispatcherHost() {}
virtual ~GeolocationDispatcherHost() {}
DISALLOW_COPY_AND_ASSIGN(GeolocationDispatcherHost);
};
#endif