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

Unified Diff: extensions/common/manifest_handlers/incognito_info.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
Index: extensions/common/manifest_handlers/incognito_info.h
diff --git a/extensions/common/manifest_handlers/incognito_info.h b/extensions/common/manifest_handlers/incognito_info.h
index 2b81b4da11f07387da913858b236fed2310cb2ea..0b7a8706e07440d1aa7c63461b28d559e3404b0b 100644
--- a/extensions/common/manifest_handlers/incognito_info.h
+++ b/extensions/common/manifest_handlers/incognito_info.h
@@ -13,7 +13,7 @@ namespace extensions {
struct IncognitoInfo : public Extension::ManifestData {
explicit IncognitoInfo(bool split_mode);
- virtual ~IncognitoInfo();
+ ~IncognitoInfo() override;
// If true, a separate process will be used for the extension in incognito
// mode.
@@ -27,13 +27,13 @@ struct IncognitoInfo : public Extension::ManifestData {
class IncognitoHandler : public ManifestHandler {
public:
IncognitoHandler();
- virtual ~IncognitoHandler();
+ ~IncognitoHandler() override;
- virtual bool Parse(Extension* extension, base::string16* error) override;
- virtual bool AlwaysParseForType(Manifest::Type type) const override;
+ bool Parse(Extension* extension, base::string16* error) override;
+ bool AlwaysParseForType(Manifest::Type type) const override;
private:
- virtual const std::vector<std::string> Keys() const override;
+ const std::vector<std::string> Keys() const override;
DISALLOW_COPY_AND_ASSIGN(IncognitoHandler);
};
« no previous file with comments | « extensions/common/manifest_handlers/icons_handler.h ('k') | extensions/common/manifest_handlers/kiosk_mode_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698