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

Unified Diff: public/web/WebGeolocationClient.h

Issue 490143002: Move GeolocationClient to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Provide default empty impl of WebGeolocationClient::geolocationDestroyed() virtual Created 6 years, 4 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 | « Source/web/WebLocalFrameImpl.cpp ('k') | public/web/WebGeolocationController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebGeolocationClient.h
diff --git a/public/web/WebGeolocationClient.h b/public/web/WebGeolocationClient.h
index 8e68424cfb84589da8d3a584c3dd5ae493111d48..7b3221b050c5e2f9f70f6f1ce1f84019a27a3e36 100644
--- a/public/web/WebGeolocationClient.h
+++ b/public/web/WebGeolocationClient.h
@@ -34,12 +34,12 @@ class WebGeolocationPosition;
class WebGeolocationClient {
public:
- virtual ~WebGeolocationClient() {}
+ virtual ~WebGeolocationClient() { }
virtual void startUpdating() = 0;
virtual void stopUpdating() = 0;
virtual void setEnableHighAccuracy(bool) = 0;
- virtual void geolocationDestroyed() = 0;
+ virtual void geolocationDestroyed() { }
sof 2014/08/22 08:42:26 To prepare for any Chromium-side removal of geoloc
virtual bool lastPosition(WebGeolocationPosition&) = 0;
virtual void requestPermission(const WebGeolocationPermissionRequest&) = 0;
« no previous file with comments | « Source/web/WebLocalFrameImpl.cpp ('k') | public/web/WebGeolocationController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698