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

Unified Diff: chrome/browser/extensions/api/location/location_api.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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: chrome/browser/extensions/api/location/location_api.h
diff --git a/chrome/browser/extensions/api/location/location_api.h b/chrome/browser/extensions/api/location/location_api.h
index bfdbcc4d11ed74b5b8ae8182b9f87019cc6c1723..300b003511912d5b9676275c19899503fca13432 100644
--- a/chrome/browser/extensions/api/location/location_api.h
+++ b/chrome/browser/extensions/api/location/location_api.h
@@ -15,10 +15,10 @@ class LocationWatchLocationFunction : public ChromeSyncExtensionFunction {
LOCATION_WATCHLOCATION)
protected:
- virtual ~LocationWatchLocationFunction() {}
+ ~LocationWatchLocationFunction() override {}
// SyncExtensionFunction:
- virtual bool RunSync() override;
+ bool RunSync() override;
};
class LocationClearWatchFunction : public ChromeSyncExtensionFunction {
@@ -27,10 +27,10 @@ class LocationClearWatchFunction : public ChromeSyncExtensionFunction {
LOCATION_CLEARWATCH)
protected:
- virtual ~LocationClearWatchFunction() {}
+ ~LocationClearWatchFunction() override {}
// SyncExtensionFunction:
- virtual bool RunSync() override;
+ bool RunSync() override;
};
} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/api/input/input.h ('k') | chrome/browser/extensions/api/location/location_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698