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

Unified Diff: chrome/browser/extensions/api/system_private/system_private_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and 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/system_private/system_private_api.h
diff --git a/chrome/browser/extensions/api/system_private/system_private_api.h b/chrome/browser/extensions/api/system_private/system_private_api.h
index e0d8d4c567f490cd395474f888788fa8f0839fb3..bebd362f774e94dda35ef2c84309d3de9701d3f9 100644
--- a/chrome/browser/extensions/api/system_private/system_private_api.h
+++ b/chrome/browser/extensions/api/system_private/system_private_api.h
@@ -22,7 +22,7 @@ class SystemPrivateGetIncognitoModeAvailabilityFunction
virtual ~SystemPrivateGetIncognitoModeAvailabilityFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
// API function which returns the status of system update.
@@ -36,7 +36,7 @@ class SystemPrivateGetUpdateStatusFunction
virtual ~SystemPrivateGetUpdateStatusFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
// API function which returns the Google API key.
@@ -48,7 +48,7 @@ class SystemPrivateGetApiKeyFunction : public SyncExtensionFunction {
virtual ~SystemPrivateGetApiKeyFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
// Dispatches systemPrivate.onBrightnessChanged event for extensions.

Powered by Google App Engine
This is Rietveld 408576698