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

Unified Diff: extensions/common/manifest_handlers/externally_connectable.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/externally_connectable.h
diff --git a/extensions/common/manifest_handlers/externally_connectable.h b/extensions/common/manifest_handlers/externally_connectable.h
index 4d6b2e787aa567d574a0d47187641f22e5979e6a..67756d53aaf995174b54fc3fe0e05029f62ed1e4 100644
--- a/extensions/common/manifest_handlers/externally_connectable.h
+++ b/extensions/common/manifest_handlers/externally_connectable.h
@@ -36,12 +36,12 @@ extern const char kErrorWildcardHostsNotAllowed[];
class ExternallyConnectableHandler : public ManifestHandler {
public:
ExternallyConnectableHandler();
- virtual ~ExternallyConnectableHandler();
+ ~ExternallyConnectableHandler() 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(ExternallyConnectableHandler);
};
@@ -61,7 +61,7 @@ struct ExternallyConnectableInfo : public Extension::ManifestData {
std::vector<InstallWarning>* install_warnings,
base::string16* error);
- virtual ~ExternallyConnectableInfo();
+ ~ExternallyConnectableInfo() override;
// The URL patterns that are allowed to connect/sendMessage.
const URLPatternSet matches;
« no previous file with comments | « extensions/common/manifest_handlers/csp_info.h ('k') | extensions/common/manifest_handlers/file_handler_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698