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

Unified Diff: Source/modules/geolocation/Geolocation.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
Index: Source/modules/geolocation/Geolocation.h
diff --git a/Source/modules/geolocation/Geolocation.h b/Source/modules/geolocation/Geolocation.h
index 2ea8ac79122302dd903a8a144ed0ec2a647971fe..2122ddb610dc70144583cc13cac65d25b1c8914b 100644
--- a/Source/modules/geolocation/Geolocation.h
+++ b/Source/modules/geolocation/Geolocation.h
@@ -49,7 +49,7 @@ class GeolocationError;
class GeolocationPosition;
class ExecutionContext;
-class Geolocation FINAL
+class Geolocation final
: public GarbageCollectedFinalized<Geolocation>
, public ScriptWrappable
, public ActiveDOMObject {
@@ -59,7 +59,7 @@ public:
virtual ~Geolocation();
void trace(Visitor*);
- virtual void stop() OVERRIDE;
+ virtual void stop() override;
Document* document() const;
LocalFrame* frame() const;
« no previous file with comments | « Source/modules/geofencing/WorkerNavigatorGeofencing.h ('k') | Source/modules/geolocation/GeolocationController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698