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

Unified Diff: chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_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/enterprise_platform_keys/enterprise_platform_keys_api.h
diff --git a/chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api.h b/chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api.h
index dd3bf39c931648d929bd5c492d4630c2fefd7446..27e2e8dd83c4af99fde11080fe785bad336e5b6e 100644
--- a/chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api.h
+++ b/chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api.h
@@ -24,7 +24,7 @@ class EnterprisePlatformKeysInternalGenerateKeyFunction
: public ChromeUIThreadExtensionFunction {
private:
virtual ~EnterprisePlatformKeysInternalGenerateKeyFunction();
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
// Called when the key was generated. If an error occurred, |public_key_der|
// will be empty and instead |error_message| be set.
@@ -39,7 +39,7 @@ class EnterprisePlatformKeysInternalSignFunction
: public ChromeUIThreadExtensionFunction {
private:
virtual ~EnterprisePlatformKeysInternalSignFunction();
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
// Called when the signature was generated. If an error occurred,
// |signature| will be empty and instead |error_message| be set.
@@ -53,7 +53,7 @@ class EnterprisePlatformKeysGetCertificatesFunction
: public ChromeUIThreadExtensionFunction {
private:
virtual ~EnterprisePlatformKeysGetCertificatesFunction();
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
// Called when the list of certificates was determined. If an error occurred,
// |certs| will be NULL and instead |error_message| be set.
@@ -68,7 +68,7 @@ class EnterprisePlatformKeysImportCertificateFunction
: public ChromeUIThreadExtensionFunction {
private:
virtual ~EnterprisePlatformKeysImportCertificateFunction();
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
// Called when the certificate was imported. Only if an error occurred,
// |error_message| will be set.
@@ -82,7 +82,7 @@ class EnterprisePlatformKeysRemoveCertificateFunction
: public ChromeUIThreadExtensionFunction {
private:
virtual ~EnterprisePlatformKeysRemoveCertificateFunction();
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
// Called when the certificate was removed. Only if an error occurred,
// |error_message| will be set.
@@ -96,7 +96,7 @@ class EnterprisePlatformKeysInternalGetTokensFunction
: public ChromeUIThreadExtensionFunction {
private:
virtual ~EnterprisePlatformKeysInternalGetTokensFunction();
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
// Called when the list of tokens was determined. If an error occurred,
// |token_ids| will be NULL and instead |error_message| be set.

Powered by Google App Engine
This is Rietveld 408576698