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

Unified Diff: chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.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/runtime/chrome_runtime_api_delegate.h
diff --git a/chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.h b/chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.h
index cdb6e7aee31c821114a3b0a6d4d3da60c254a28e..909b741214590f9ba338ad975e85adba48ba1a92 100644
--- a/chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.h
+++ b/chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.h
@@ -39,23 +39,23 @@ class ChromeRuntimeAPIDelegate : public extensions::RuntimeAPIDelegate,
friend class extensions::RuntimeAPI;
// extensions::RuntimeAPIDelegate implementation.
- virtual void AddUpdateObserver(extensions::UpdateObserver* observer) OVERRIDE;
+ virtual void AddUpdateObserver(extensions::UpdateObserver* observer) override;
virtual void RemoveUpdateObserver(
- extensions::UpdateObserver* observer) OVERRIDE;
+ extensions::UpdateObserver* observer) override;
virtual base::Version GetPreviousExtensionVersion(
- const extensions::Extension* extension) OVERRIDE;
- virtual void ReloadExtension(const std::string& extension_id) OVERRIDE;
+ const extensions::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;
+ const UpdateCheckCallback& callback) override;
+ virtual void OpenURL(const GURL& uninstall_url) override;
virtual bool GetPlatformInfo(
- extensions::core_api::runtime::PlatformInfo* info) OVERRIDE;
- virtual bool RestartDevice(std::string* error_message) OVERRIDE;
+ extensions::core_api::runtime::PlatformInfo* info) override;
+ virtual bool RestartDevice(std::string* error_message) override;
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
void UpdateCheckComplete(const std::string& extension_id);
void CallUpdateCallbacks(const std::string& extension_id,

Powered by Google App Engine
This is Rietveld 408576698