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

Unified Diff: Source/modules/geofencing/CircularGeofencingRegion.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
« no previous file with comments | « Source/modules/gamepad/NavigatorGamepad.h ('k') | Source/modules/geofencing/GeofencingEvent.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 f8e2b93342ae1790c7473879e9c2af5c839ded5d..79fbd416b8c2c0deda2f620a7af7efb3dfb4a393 100644
--- a/Source/modules/geofencing/CircularGeofencingRegion.h
+++ b/Source/modules/geofencing/CircularGeofencingRegion.h
@@ -19,7 +19,7 @@ class MODULES_EXPORT CircularGeofencingRegion final : public GeofencingRegion {
public:
static CircularGeofencingRegion* create(const CircularGeofencingRegionInit&);
static CircularGeofencingRegion* create(const WebString& id, const WebCircularGeofencingRegion&);
- virtual ~CircularGeofencingRegion() { }
+ ~CircularGeofencingRegion() override { }
double latitude() const { return m_webRegion.latitude; }
double longitude() const { return m_webRegion.longitude; }
@@ -29,7 +29,7 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { GeofencingRegion::trace(visitor); }
- virtual bool isCircularGeofencingRegion() const override { return true; }
+ bool isCircularGeofencingRegion() const override { return true; }
private:
explicit CircularGeofencingRegion(const String& id, const WebCircularGeofencingRegion&);
« no previous file with comments | « Source/modules/gamepad/NavigatorGamepad.h ('k') | Source/modules/geofencing/GeofencingEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698