| Index: extensions/common/manifest_handlers/oauth2_manifest_handler.h
|
| diff --git a/extensions/common/manifest_handlers/oauth2_manifest_handler.h b/extensions/common/manifest_handlers/oauth2_manifest_handler.h
|
| index 8939e8846b6d9058d4d61804b4e05153ba284961..36aff057c2a2735b63c3597611b46f9592fed47b 100644
|
| --- a/extensions/common/manifest_handlers/oauth2_manifest_handler.h
|
| +++ b/extensions/common/manifest_handlers/oauth2_manifest_handler.h
|
| @@ -17,7 +17,7 @@ namespace extensions {
|
| // OAuth2 info included in the extension.
|
| struct OAuth2Info : public Extension::ManifestData {
|
| OAuth2Info();
|
| - virtual ~OAuth2Info();
|
| + ~OAuth2Info() override;
|
|
|
| std::string client_id;
|
| std::vector<std::string> scopes;
|
| @@ -32,13 +32,12 @@ struct OAuth2Info : public Extension::ManifestData {
|
| class OAuth2ManifestHandler : public ManifestHandler {
|
| public:
|
| OAuth2ManifestHandler();
|
| - virtual ~OAuth2ManifestHandler();
|
| + ~OAuth2ManifestHandler() override;
|
|
|
| - virtual bool Parse(Extension* extension,
|
| - base::string16* error) override;
|
| + bool Parse(Extension* extension, base::string16* error) override;
|
|
|
| private:
|
| - virtual const std::vector<std::string> Keys() const override;
|
| + const std::vector<std::string> Keys() const override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(OAuth2ManifestHandler);
|
| };
|
|
|