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

Unified Diff: Source/web/GeolocationClientProxy.h

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/FrameLoaderClientImpl.h ('k') | Source/web/GraphicsLayerFactoryChromium.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/GeolocationClientProxy.h
diff --git a/Source/web/GeolocationClientProxy.h b/Source/web/GeolocationClientProxy.h
index 62834d3bc0459b975da6eb65f0b6310455009582..1089d6f254f5052a825b4670932e0582ff128dbe 100644
--- a/Source/web/GeolocationClientProxy.h
+++ b/Source/web/GeolocationClientProxy.h
@@ -42,15 +42,15 @@ public:
return adoptPtrWillBeNoop(new GeolocationClientProxy(client));
}
- virtual ~GeolocationClientProxy();
+ ~GeolocationClientProxy() override;
void setController(GeolocationController*);
- virtual void startUpdating() override;
- virtual void stopUpdating() override;
- virtual void setEnableHighAccuracy(bool) override;
- virtual GeolocationPosition* lastPosition() override;
+ void startUpdating() override;
+ void stopUpdating() override;
+ void setEnableHighAccuracy(bool) override;
+ GeolocationPosition* lastPosition() override;
- virtual void requestPermission(Geolocation*) override;
- virtual void cancelPermissionRequest(Geolocation*) override;
+ void requestPermission(Geolocation*) override;
+ void cancelPermissionRequest(Geolocation*) override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/web/FrameLoaderClientImpl.h ('k') | Source/web/GraphicsLayerFactoryChromium.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698