From a15bee143f21dcc0fb91b8b7f81848a7e51a38bb Mon Sep 17 00:00:00 2001 From: mostynb Date: Fri, 3 Oct 2014 17:40:32 -0700 Subject: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ BUG=417463 Review URL: https://codereview.chromium.org/624153002 Cr-Commit-Position: refs/heads/master@{#298134} --- chrome/browser/extensions/api/idltest/idltest_api.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/browser/extensions/api/idltest/idltest_api.h') diff --git a/chrome/browser/extensions/api/idltest/idltest_api.h b/chrome/browser/extensions/api/idltest/idltest_api.h index 5f93937..19f6156 100644 --- a/chrome/browser/extensions/api/idltest/idltest_api.h +++ b/chrome/browser/extensions/api/idltest/idltest_api.h @@ -13,7 +13,7 @@ class IdltestSendArrayBufferFunction : public SyncExtensionFunction { protected: virtual ~IdltestSendArrayBufferFunction() {} - virtual bool RunSync() OVERRIDE; + virtual bool RunSync() override; }; class IdltestSendArrayBufferViewFunction : public SyncExtensionFunction { @@ -23,7 +23,7 @@ class IdltestSendArrayBufferViewFunction : public SyncExtensionFunction { protected: virtual ~IdltestSendArrayBufferViewFunction() {} - virtual bool RunSync() OVERRIDE; + virtual bool RunSync() override; }; class IdltestGetArrayBufferFunction : public SyncExtensionFunction { @@ -32,7 +32,7 @@ class IdltestGetArrayBufferFunction : public SyncExtensionFunction { protected: virtual ~IdltestGetArrayBufferFunction() {} - virtual bool RunSync() OVERRIDE; + virtual bool RunSync() override; }; #endif // CHROME_BROWSER_EXTENSIONS_API_IDLTEST_IDLTEST_API_H_ -- cgit v1.1