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

Unified Diff: extensions/browser/api/execute_code_function.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
« no previous file with comments | « extensions/browser/api/dns/dns_api.h ('k') | extensions/browser/api/guest_view/guest_view_internal_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/execute_code_function.h
diff --git a/extensions/browser/api/execute_code_function.h b/extensions/browser/api/execute_code_function.h
index 611b4205c6175420cc96088c77a69352b54f10a3..9e1593a9d3ea3a87a120c11b925ab238a8327c11 100644
--- a/extensions/browser/api/execute_code_function.h
+++ b/extensions/browser/api/execute_code_function.h
@@ -19,11 +19,11 @@ class ExecuteCodeFunction : public AsyncExtensionFunction {
ExecuteCodeFunction();
protected:
- virtual ~ExecuteCodeFunction();
+ ~ExecuteCodeFunction() override;
// ExtensionFunction implementation.
- virtual bool HasPermission() override;
- virtual bool RunAsync() override;
+ bool HasPermission() override;
+ bool RunAsync() override;
// Initialize |details_| if it hasn't already been.
virtual bool Init() = 0;
« no previous file with comments | « extensions/browser/api/dns/dns_api.h ('k') | extensions/browser/api/guest_view/guest_view_internal_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698