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

Unified Diff: Source/modules/geolocation/Geolocation.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/geofencing/GeofencingEvent.h ('k') | Source/modules/geolocation/GeolocationController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geolocation/Geolocation.h
diff --git a/Source/modules/geolocation/Geolocation.h b/Source/modules/geolocation/Geolocation.h
index 094580639cb1adaa16633b1bb1487fe4a0e59ee7..e4aed045f52a159b4f269b9c530478332a671486 100644
--- a/Source/modules/geolocation/Geolocation.h
+++ b/Source/modules/geolocation/Geolocation.h
@@ -55,10 +55,10 @@ class MODULES_EXPORT Geolocation final
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Geolocation);
public:
static Geolocation* create(ExecutionContext*);
- virtual ~Geolocation();
+ ~Geolocation() override;
DECLARE_VIRTUAL_TRACE();
- virtual void stop() override;
+ void stop() override;
Document* document() const;
LocalFrame* frame() const;
« no previous file with comments | « Source/modules/geofencing/GeofencingEvent.h ('k') | Source/modules/geolocation/GeolocationController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698