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

Unified Diff: extensions/common/manifest_handlers/sandboxed_page_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/sandboxed_page_info.h
diff --git a/extensions/common/manifest_handlers/sandboxed_page_info.h b/extensions/common/manifest_handlers/sandboxed_page_info.h
index 83e3fa9d1b06dc48e6b93ae3f6b2bbf690066817..3dd0ae7242c29cd6607ba02429abe8c52c0fe6b7 100644
--- a/extensions/common/manifest_handlers/sandboxed_page_info.h
+++ b/extensions/common/manifest_handlers/sandboxed_page_info.h
@@ -16,7 +16,7 @@ namespace extensions {
struct SandboxedPageInfo : public Extension::ManifestData {
public:
SandboxedPageInfo();
- virtual ~SandboxedPageInfo();
+ ~SandboxedPageInfo() override;
// Returns the extension's Content Security Policy for the sandboxed pages.
static const std::string& GetContentSecurityPolicy(
@@ -42,12 +42,12 @@ struct SandboxedPageInfo : public Extension::ManifestData {
class SandboxedPageHandler : public ManifestHandler {
public:
SandboxedPageHandler();
- virtual ~SandboxedPageHandler();
+ ~SandboxedPageHandler() 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;
};
} // namespace extensions
« no previous file with comments | « extensions/common/manifest_handlers/requirements_info.h ('k') | extensions/common/manifest_handlers/shared_module_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698