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

Unified Diff: extensions/common/manifest_handlers/kiosk_mode_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/kiosk_mode_info.h
diff --git a/extensions/common/manifest_handlers/kiosk_mode_info.h b/extensions/common/manifest_handlers/kiosk_mode_info.h
index c0e23258fa6e400b9f3d75ada7d51358db3a43a2..cf02b0dbd61f0386708e523676d357a0430bbfe8 100644
--- a/extensions/common/manifest_handlers/kiosk_mode_info.h
+++ b/extensions/common/manifest_handlers/kiosk_mode_info.h
@@ -23,7 +23,7 @@ struct KioskModeInfo : public Extension::ManifestData {
};
explicit KioskModeInfo(KioskStatus kiosk_status);
- virtual ~KioskModeInfo();
+ ~KioskModeInfo() override;
KioskStatus kiosk_status;
@@ -38,12 +38,12 @@ struct KioskModeInfo : public Extension::ManifestData {
class KioskModeHandler : public ManifestHandler {
public:
KioskModeHandler();
- virtual ~KioskModeHandler();
+ ~KioskModeHandler() 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;
std::vector<std::string> supported_keys_;
« no previous file with comments | « extensions/common/manifest_handlers/incognito_info.h ('k') | extensions/common/manifest_handlers/launcher_page_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698