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

Unified Diff: extensions/common/manifest_handlers/oauth2_manifest_handler.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/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);
};
« no previous file with comments | « extensions/common/manifest_handlers/nacl_modules_handler.h ('k') | extensions/common/manifest_handlers/offline_enabled_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698