| Index: extensions/common/manifest_handlers/options_page_info.h
|
| diff --git a/extensions/common/manifest_handlers/options_page_info.h b/extensions/common/manifest_handlers/options_page_info.h
|
| index 421165607742f1a6436a28abc8b95d0738c347ff..b448f6fc3bd71f7752b274f403f12721cfc7056b 100644
|
| --- a/extensions/common/manifest_handlers/options_page_info.h
|
| +++ b/extensions/common/manifest_handlers/options_page_info.h
|
| @@ -25,7 +25,7 @@ class OptionsPageInfo : public Extension::ManifestData {
|
| OptionsPageInfo(const GURL& options_page,
|
| bool chrome_styles,
|
| bool open_in_tab);
|
| - virtual ~OptionsPageInfo();
|
| + ~OptionsPageInfo() override;
|
|
|
| // Returns the URL to the given extension's options page. This method supports
|
| // both the "options_ui.page" field and the legacy "options_page" field. If
|
| @@ -69,15 +69,15 @@ class OptionsPageInfo : public Extension::ManifestData {
|
| class OptionsPageManifestHandler : public ManifestHandler {
|
| public:
|
| OptionsPageManifestHandler();
|
| - virtual ~OptionsPageManifestHandler();
|
| + ~OptionsPageManifestHandler() 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(OptionsPageManifestHandler);
|
| };
|
|
|