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. |