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

Unified Diff: chrome/common/extensions/manifest_handlers/theme_handler.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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/common/extensions/manifest_handlers/theme_handler.h
diff --git a/chrome/common/extensions/manifest_handlers/theme_handler.h b/chrome/common/extensions/manifest_handlers/theme_handler.h
index 26d613c00e67362c6312ed4b1ea2a3e3c7e1a704..bd35f28cf1534fe33efb66ed86d84647b59d0ec3 100644
--- a/chrome/common/extensions/manifest_handlers/theme_handler.h
+++ b/chrome/common/extensions/manifest_handlers/theme_handler.h
@@ -18,7 +18,7 @@ namespace extensions {
struct ThemeInfo : public Extension::ManifestData {
// Define out of line constructor/destructor to please Clang.
ThemeInfo();
- virtual ~ThemeInfo();
+ ~ThemeInfo() override;
static const base::DictionaryValue* GetImages(const Extension* extension);
static const base::DictionaryValue* GetColors(const Extension* extension);
@@ -43,15 +43,15 @@ struct ThemeInfo : public Extension::ManifestData {
class ThemeHandler : public ManifestHandler {
public:
ThemeHandler();
- virtual ~ThemeHandler();
+ ~ThemeHandler() override;
- virtual bool Parse(Extension* extension, base::string16* error) override;
- virtual bool Validate(const Extension* extension,
- std::string* error,
- std::vector<InstallWarning>* warnings) const override;
+ bool Parse(Extension* extension, base::string16* error) override;
+ bool Validate(const Extension* extension,
+ std::string* error,
+ std::vector<InstallWarning>* warnings) const override;
private:
- virtual const std::vector<std::string> Keys() const override;
+ const std::vector<std::string> Keys() const override;
DISALLOW_COPY_AND_ASSIGN(ThemeHandler);
};

Powered by Google App Engine
This is Rietveld 408576698