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

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

Issue 6688054: Move geolocation, desktop notification, and device orientation into their own message files. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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_permission_context.h
===================================================================
--- content/browser/geolocation/geolocation_permission_context.h (revision 78781)
+++ content/browser/geolocation/geolocation_permission_context.h (working copy)
@@ -21,14 +21,14 @@
// GeolocationPermissionContext manages Geolocation permissions flow,
// and delegates UI handling via GeolocationInfoBarQueueController.
// It always notifies the requesting render_view asynchronously via
-// ViewMsg_Geolocation_PermissionSet.
+// GeolocationMsg_PermissionSet.
class GeolocationPermissionContext
: public base::RefCountedThreadSafe<GeolocationPermissionContext> {
public:
explicit GeolocationPermissionContext(Profile* profile);
// The render is requesting permission to use Geolocation.
- // Response will be sent asynchronously as ViewMsg_Geolocation_PermissionSet.
+ // Response will be sent asynchronously as GeolocationMsg_PermissionSet.
void RequestGeolocationPermission(
int render_process_id, int render_view_id, int bridge_id,
const GURL& requesting_frame);
@@ -39,7 +39,7 @@
const GURL& requesting_frame);
// Notifies whether or not the corresponding bridge is allowed to use
- // geolocation via ViewMsg_Geolocation_PermissionSet.
+ // geolocation via GeolocationMsg_PermissionSet.
void NotifyPermissionSet(
int render_process_id, int render_view_id, int bridge_id,
const GURL& requesting_frame, bool allowed);
« no previous file with comments | « content/browser/geolocation/geolocation_dispatcher_host.cc ('k') | content/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698