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

Unified Diff: extensions/common/features/manifest_feature.h

Issue 664933004: Standardize usage of virtual/override/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/common/features/complex_feature.h ('k') | extensions/common/features/permission_feature.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/features/manifest_feature.h
diff --git a/extensions/common/features/manifest_feature.h b/extensions/common/features/manifest_feature.h
index b4d38085356e0b55a57419a0aff2dae688aaafbc..ab77d028df8f56dc24da3925b2434fd073c0a1ab 100644
--- a/extensions/common/features/manifest_feature.h
+++ b/extensions/common/features/manifest_feature.h
@@ -14,15 +14,15 @@ namespace extensions {
class ManifestFeature : public SimpleFeature {
public:
ManifestFeature();
- virtual ~ManifestFeature();
+ ~ManifestFeature() override;
- virtual Feature::Availability IsAvailableToContext(
+ Feature::Availability IsAvailableToContext(
const Extension* extension,
Feature::Context context,
const GURL& url,
Feature::Platform platform) const override;
- virtual std::string Parse(const base::DictionaryValue* value) override;
+ std::string Parse(const base::DictionaryValue* value) override;
};
} // namespace extensions
« no previous file with comments | « extensions/common/features/complex_feature.h ('k') | extensions/common/features/permission_feature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698