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

Unified Diff: Source/modules/geolocation/GeolocationInspectorAgent.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/modules/geolocation/GeolocationController.h ('k') | Source/modules/geolocation/Geoposition.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geolocation/GeolocationInspectorAgent.h
diff --git a/Source/modules/geolocation/GeolocationInspectorAgent.h b/Source/modules/geolocation/GeolocationInspectorAgent.h
index 2c827dc20a3f83f77cc4e8bac1ba15b3e2fce28d..88cf24de994c57995771dce05901172bceb44584 100644
--- a/Source/modules/geolocation/GeolocationInspectorAgent.h
+++ b/Source/modules/geolocation/GeolocationInspectorAgent.h
@@ -43,16 +43,16 @@ class GeolocationController;
typedef String ErrorString;
-class GeolocationInspectorAgent FINAL : public InspectorBaseAgent<GeolocationInspectorAgent>, public InspectorBackendDispatcher::GeolocationCommandHandler {
+class GeolocationInspectorAgent final : public InspectorBaseAgent<GeolocationInspectorAgent>, public InspectorBackendDispatcher::GeolocationCommandHandler {
WTF_MAKE_NONCOPYABLE(GeolocationInspectorAgent);
public:
static PassOwnPtrWillBeRawPtr<GeolocationInspectorAgent> create();
virtual ~GeolocationInspectorAgent();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
// Protocol methods.
- virtual void setGeolocationOverride(ErrorString*, const double*, const double*, const double*) OVERRIDE;
- virtual void clearGeolocationOverride(ErrorString*) OVERRIDE;
+ virtual void setGeolocationOverride(ErrorString*, const double*, const double*, const double*) override;
+ virtual void clearGeolocationOverride(ErrorString*) override;
// Instrumentation method.
GeolocationPosition* overrideGeolocationPosition(GeolocationPosition*);
« no previous file with comments | « Source/modules/geolocation/GeolocationController.h ('k') | Source/modules/geolocation/Geoposition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698