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

Unified Diff: extensions/shell/browser/shell_runtime_api_delegate.h

Issue 667153007: Standardize usage of virtual/override/final specifiers. (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: extensions/shell/browser/shell_runtime_api_delegate.h
diff --git a/extensions/shell/browser/shell_runtime_api_delegate.h b/extensions/shell/browser/shell_runtime_api_delegate.h
index 92bb1ac5947dae7d47b78bb8ad1b26a68427a22a..816423b09745922808163b1521200bc9c21c2681 100644
--- a/extensions/shell/browser/shell_runtime_api_delegate.h
+++ b/extensions/shell/browser/shell_runtime_api_delegate.h
@@ -13,19 +13,19 @@ namespace extensions {
class ShellRuntimeAPIDelegate : public RuntimeAPIDelegate {
public:
ShellRuntimeAPIDelegate();
- virtual ~ShellRuntimeAPIDelegate();
+ ~ShellRuntimeAPIDelegate() override;
// RuntimeAPIDelegate implementation.
- virtual void AddUpdateObserver(UpdateObserver* observer) override;
- virtual void RemoveUpdateObserver(UpdateObserver* observer) override;
- virtual base::Version GetPreviousExtensionVersion(
+ void AddUpdateObserver(UpdateObserver* observer) override;
+ void RemoveUpdateObserver(UpdateObserver* observer) override;
+ base::Version GetPreviousExtensionVersion(
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;
+ void ReloadExtension(const std::string& extension_id) override;
+ bool CheckForUpdates(const std::string& extension_id,
+ const UpdateCheckCallback& callback) override;
+ void OpenURL(const GURL& uninstall_url) override;
+ bool GetPlatformInfo(core_api::runtime::PlatformInfo* info) override;
+ bool RestartDevice(std::string* error_message) override;
private:
DISALLOW_COPY_AND_ASSIGN(ShellRuntimeAPIDelegate);
« no previous file with comments | « extensions/shell/browser/shell_omaha_query_params_delegate.h ('k') | extensions/shell/browser/shell_special_storage_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698