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

Unified Diff: chrome/browser/extensions/install_verifier.h

Issue 666153002: Standardize usage of virtual/override/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/install_verifier.h
diff --git a/chrome/browser/extensions/install_verifier.h b/chrome/browser/extensions/install_verifier.h
index 01fbb4f2d257a11b120fb08e0fcc01ce9dc1909e..778a1a6069b38a3db2a5d101358c84edb6fad0cf 100644
--- a/chrome/browser/extensions/install_verifier.h
+++ b/chrome/browser/extensions/install_verifier.h
@@ -43,7 +43,7 @@ struct InstallSignature;
class InstallVerifier : public ManagementPolicy::Provider {
public:
InstallVerifier(ExtensionPrefs* prefs, content::BrowserContext* context);
- virtual ~InstallVerifier();
+ ~InstallVerifier() override;
// Returns whether |extension| is of a type that needs verification.
static bool NeedsVerification(const Extension& extension);
@@ -84,10 +84,10 @@ class InstallVerifier : public ManagementPolicy::Provider {
bool AllowedByEnterprisePolicy(const std::string& id) const;
// ManagementPolicy::Provider interface.
- virtual std::string GetDebugPolicyProviderName() const override;
- virtual bool MustRemainDisabled(const Extension* extension,
- Extension::DisableReason* reason,
- base::string16* error) const override;
+ std::string GetDebugPolicyProviderName() const override;
+ bool MustRemainDisabled(const Extension* extension,
+ Extension::DisableReason* reason,
+ base::string16* error) const override;
private:
// We keep a list of operations to the current set of extensions.
« no previous file with comments | « chrome/browser/extensions/install_tracker_factory.h ('k') | chrome/browser/extensions/isolated_app_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698