Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1145)

Unified Diff: content/browser/geolocation/geolocation_dispatcher_host.h

Issue 11269002: Introduce GeolocationPermissionRequestID, a wrapper struct to contain the (render process ID, rende… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698