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/nacl_modules_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/nacl_modules_handler.h
diff --git a/extensions/common/manifest_handlers/nacl_modules_handler.h b/extensions/common/manifest_handlers/nacl_modules_handler.h
index 0eff364c97f436d0d47a9afc0741f630cdd80f62..4830bfab7d7a64a25652a4a997be363aeddcc2cc 100644
--- a/extensions/common/manifest_handlers/nacl_modules_handler.h
+++ b/extensions/common/manifest_handlers/nacl_modules_handler.h
@@ -28,12 +28,12 @@ struct NaClModuleInfo {
class NaClModulesHandler : public ManifestHandler {
public:
NaClModulesHandler();
- virtual ~NaClModulesHandler();
+ ~NaClModulesHandler() 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

Powered by Google App Engine
This is Rietveld 408576698