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

Unified Diff: chrome/renderer/geolocation_dispatcher.cc

Issue 658005: Bring Geolocation to life!... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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
« no previous file with comments | « chrome/browser/geolocation/location_arbitrator_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/geolocation_dispatcher.cc
===================================================================
--- chrome/renderer/geolocation_dispatcher.cc (revision 39892)
+++ chrome/renderer/geolocation_dispatcher.cc (working copy)
@@ -39,27 +39,27 @@
void GeolocationDispatcher::requestPermissionForFrame(
int bridge_id, const WebKit::WebURL& url) {
render_view_->Send(new ViewHostMsg_Geolocation_RequestPermission(
- bridge_id, render_view_->routing_id(), GURL(url).GetOrigin()));
+ render_view_->routing_id(), bridge_id, GURL(url).GetOrigin()));
}
void GeolocationDispatcher::startUpdating(int bridge_id, bool hasHighAccuracy) {
render_view_->Send(new ViewHostMsg_Geolocation_StartUpdating(
- bridge_id, render_view_->routing_id(), hasHighAccuracy));
+ render_view_->routing_id(), bridge_id, hasHighAccuracy));
}
void GeolocationDispatcher::stopUpdating(int bridge_id) {
render_view_->Send(new ViewHostMsg_Geolocation_StopUpdating(
- bridge_id, render_view_->routing_id()));
+ render_view_->routing_id(), bridge_id));
}
void GeolocationDispatcher::suspend(int bridge_id) {
render_view_->Send(new ViewHostMsg_Geolocation_Suspend(
- bridge_id, render_view_->routing_id()));
+ render_view_->routing_id(), bridge_id));
}
void GeolocationDispatcher::resume(int bridge_id) {
render_view_->Send(new ViewHostMsg_Geolocation_Resume(
- bridge_id, render_view_->routing_id()));
+ render_view_->routing_id(), bridge_id));
}
int GeolocationDispatcher::attachBridge(
« no previous file with comments | « chrome/browser/geolocation/location_arbitrator_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698