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

Unified Diff: Source/modules/geolocation/testing/GeolocationClientMock.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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
Index: Source/modules/geolocation/testing/GeolocationClientMock.h
diff --git a/Source/modules/geolocation/testing/GeolocationClientMock.h b/Source/modules/geolocation/testing/GeolocationClientMock.h
index 9c9f49ddc6298c436dce3bc68bada1795394a9d8..ae27f2f7b012bba4e8aab5e277538c2a37ab4d33 100644
--- a/Source/modules/geolocation/testing/GeolocationClientMock.h
+++ b/Source/modules/geolocation/testing/GeolocationClientMock.h
@@ -47,7 +47,7 @@ class GeolocationPosition;
class GeolocationClientMock : public GeolocationClient {
public:
GeolocationClientMock();
- virtual ~GeolocationClientMock();
+ ~GeolocationClientMock() override;
void setPosition(GeolocationPosition*);
void setPositionUnavailableError(const String& errorMessage);
@@ -55,12 +55,12 @@ public:
int numberOfPendingPermissionRequests() const;
// GeolocationClient
- virtual void startUpdating() override;
- virtual void stopUpdating() override;
- virtual void setEnableHighAccuracy(bool) override;
- virtual GeolocationPosition* lastPosition() override;
- virtual void requestPermission(Geolocation*) override;
- virtual void cancelPermissionRequest(Geolocation*) override;
+ void startUpdating() override;
+ void stopUpdating() override;
+ void setEnableHighAccuracy(bool) override;
+ GeolocationPosition* lastPosition() override;
+ void requestPermission(Geolocation*) override;
+ void cancelPermissionRequest(Geolocation*) override;
void controllerForTestAdded(GeolocationController*) override;
void controllerForTestRemoved(GeolocationController*) override;
« no previous file with comments | « Source/modules/geolocation/GeolocationController.h ('k') | Source/modules/indexeddb/DOMWindowIndexedDatabase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698