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

Unified Diff: Source/modules/geofencing/CircularGeofencingRegion.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/filesystem/SyncCallbackHelper.h ('k') | Source/modules/geofencing/Geofencing.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geofencing/CircularGeofencingRegion.h
diff --git a/Source/modules/geofencing/CircularGeofencingRegion.h b/Source/modules/geofencing/CircularGeofencingRegion.h
index 4c524d77a699e523fc8f6bc383a57e8419576409..f7da6071173ec804f38747ebb084c06b7f38c24a 100644
--- a/Source/modules/geofencing/CircularGeofencingRegion.h
+++ b/Source/modules/geofencing/CircularGeofencingRegion.h
@@ -12,7 +12,7 @@ namespace blink {
class Dictionary;
-class CircularGeofencingRegion FINAL : public GeofencingRegion {
+class CircularGeofencingRegion final : public GeofencingRegion {
DEFINE_WRAPPERTYPEINFO();
WTF_MAKE_NONCOPYABLE(CircularGeofencingRegion);
public:
@@ -26,9 +26,9 @@ public:
WebCircularGeofencingRegion webRegion() const;
- virtual void trace(Visitor* visitor) OVERRIDE { GeofencingRegion::trace(visitor); }
+ virtual void trace(Visitor* visitor) override { GeofencingRegion::trace(visitor); }
- virtual bool isCircularGeofencingRegion() const OVERRIDE { return true; }
+ virtual bool isCircularGeofencingRegion() const override { return true; }
private:
explicit CircularGeofencingRegion(const String& id, const WebCircularGeofencingRegion&);
« no previous file with comments | « Source/modules/filesystem/SyncCallbackHelper.h ('k') | Source/modules/geofencing/Geofencing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698