summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-18 18:07:06 +0000
committerbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-18 18:07:06 +0000
commit8d4f7550a0a37a42a175bed852e00d2e7f19503c (patch)
treebb701fa98200056554b93ea07470157341575706
parent63aa23ac6d73c8754879caa717f7ad9b2073a90f (diff)
downloadchromium_src-8d4f7550a0a37a42a175bed852e00d2e7f19503c.zip
chromium_src-8d4f7550a0a37a42a175bed852e00d2e7f19503c.tar.gz
chromium_src-8d4f7550a0a37a42a175bed852e00d2e7f19503c.tar.bz2
Follow up on http://codereview.chromium.org/848003
Removes overload now that we rolled http://trac.webkit.org/changeset/56011 Review URL: http://codereview.chromium.org/1045001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41969 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/renderer/geolocation_dispatcher.cc5
-rw-r--r--chrome/renderer/geolocation_dispatcher.h3
2 files changed, 0 insertions, 8 deletions
diff --git a/chrome/renderer/geolocation_dispatcher.cc b/chrome/renderer/geolocation_dispatcher.cc
index 7de2847..f7f827f 100644
--- a/chrome/renderer/geolocation_dispatcher.cc
+++ b/chrome/renderer/geolocation_dispatcher.cc
@@ -43,11 +43,6 @@ void GeolocationDispatcher::requestPermissionForFrame(
}
void GeolocationDispatcher::startUpdating(
- int bridge_id, bool enableHighAccuracy) {
- startUpdating(bridge_id, WebKit::WebURL(), enableHighAccuracy);
-}
-
-void GeolocationDispatcher::startUpdating(
int bridge_id, const WebKit::WebURL& url, bool enableHighAccuracy) {
render_view_->Send(new ViewHostMsg_Geolocation_StartUpdating(
render_view_->routing_id(), bridge_id, GURL(url).host(),
diff --git a/chrome/renderer/geolocation_dispatcher.h b/chrome/renderer/geolocation_dispatcher.h
index d2a7140..c643ae9 100644
--- a/chrome/renderer/geolocation_dispatcher.h
+++ b/chrome/renderer/geolocation_dispatcher.h
@@ -29,9 +29,6 @@ class GeolocationDispatcher : public WebKit::WebGeolocationServiceInterface {
// WebKit::GeolocationServiceInterfaceChromium.
void requestPermissionForFrame(int bridge_id, const WebKit::WebURL& url);
- // TODO(bulach): remove this method once we roll:
- // https://bugs.webkit.org/show_bug.cgi?id=36012.
- void startUpdating(int bridge_id, bool enableHighAccuracy);
void startUpdating(
int bridge_id, const WebKit::WebURL& url, bool enableHighAccuracy);
void stopUpdating(int bridge_id);