| Index: extensions/common/manifest_handlers/icons_handler.h
|
| diff --git a/extensions/common/manifest_handlers/icons_handler.h b/extensions/common/manifest_handlers/icons_handler.h
|
| index 7fc0c30ac944dd68684cc3d57f0dba72dad3bc3b..5c9186d0c15f787e058bc3e03b3683c50c6dd840 100644
|
| --- a/extensions/common/manifest_handlers/icons_handler.h
|
| +++ b/extensions/common/manifest_handlers/icons_handler.h
|
| @@ -37,15 +37,15 @@ struct IconsInfo : public Extension::ManifestData {
|
| class IconsHandler : public ManifestHandler {
|
| public:
|
| IconsHandler();
|
| - virtual ~IconsHandler();
|
| + ~IconsHandler() 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;
|
| };
|
|
|
| } // namespace extensions
|
|
|