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

Unified Diff: extensions/browser/test_runtime_api_delegate.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in 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
« no previous file with comments | « extensions/browser/test_management_policy.h ('k') | extensions/browser/updater/safe_manifest_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/test_runtime_api_delegate.h
diff --git a/extensions/browser/test_runtime_api_delegate.h b/extensions/browser/test_runtime_api_delegate.h
index c1200d7aca91a9f9469b8bbc9e816e2273badb34..6f137bae179807dd3dd43a12b045cb407fd5c634 100644
--- a/extensions/browser/test_runtime_api_delegate.h
+++ b/extensions/browser/test_runtime_api_delegate.h
@@ -16,16 +16,16 @@ class TestRuntimeAPIDelegate : public RuntimeAPIDelegate {
virtual ~TestRuntimeAPIDelegate();
// RuntimeAPIDelegate implementation.
- virtual void AddUpdateObserver(UpdateObserver* observer) OVERRIDE;
- virtual void RemoveUpdateObserver(UpdateObserver* observer) OVERRIDE;
+ virtual void AddUpdateObserver(UpdateObserver* observer) override;
+ virtual void RemoveUpdateObserver(UpdateObserver* observer) override;
virtual base::Version GetPreviousExtensionVersion(
- const Extension* extension) OVERRIDE;
- virtual void ReloadExtension(const std::string& extension_id) OVERRIDE;
+ const Extension* extension) override;
+ virtual void ReloadExtension(const std::string& extension_id) override;
virtual bool CheckForUpdates(const std::string& extension_id,
- const UpdateCheckCallback& callback) OVERRIDE;
- virtual void OpenURL(const GURL& uninstall_url) OVERRIDE;
- virtual bool GetPlatformInfo(core_api::runtime::PlatformInfo* info) OVERRIDE;
- virtual bool RestartDevice(std::string* error_message) OVERRIDE;
+ const UpdateCheckCallback& callback) override;
+ virtual void OpenURL(const GURL& uninstall_url) override;
+ virtual bool GetPlatformInfo(core_api::runtime::PlatformInfo* info) override;
+ virtual bool RestartDevice(std::string* error_message) override;
private:
DISALLOW_COPY_AND_ASSIGN(TestRuntimeAPIDelegate);
« no previous file with comments | « extensions/browser/test_management_policy.h ('k') | extensions/browser/updater/safe_manifest_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698