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

Unified Diff: extensions/common/manifest_handlers/webview_info.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/webview_info.h
diff --git a/extensions/common/manifest_handlers/webview_info.h b/extensions/common/manifest_handlers/webview_info.h
index bbd96555cecd13089bc245ba605f6fdde7931837..2cd501efb6579ba591c462f23976566939be0d36 100644
--- a/extensions/common/manifest_handlers/webview_info.h
+++ b/extensions/common/manifest_handlers/webview_info.h
@@ -22,7 +22,7 @@ class WebviewInfo : public Extension::ManifestData {
public:
// Define out of line constructor/destructor to please Clang.
WebviewInfo();
- virtual ~WebviewInfo();
+ ~WebviewInfo() override;
// Returns true if the specified resource is web accessible.
static bool IsResourceWebviewAccessible(const Extension* extension,
@@ -39,12 +39,12 @@ class WebviewInfo : public Extension::ManifestData {
class WebviewHandler : public ManifestHandler {
public:
WebviewHandler();
- virtual ~WebviewHandler();
+ ~WebviewHandler() 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(WebviewHandler);
};
« no previous file with comments | « extensions/common/manifest_handlers/web_accessible_resources_info.h ('k') | extensions/common/manifest_url_handlers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698