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

Unified Diff: chrome/browser/extensions/api/commands/commands.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/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: chrome/browser/extensions/api/commands/commands.h
diff --git a/chrome/browser/extensions/api/commands/commands.h b/chrome/browser/extensions/api/commands/commands.h
index 423049ac5a4446d2c7026d842b39c94d698400d9..9aa38eae130a77a2d7c8830337d78ca08adf84d8 100644
--- a/chrome/browser/extensions/api/commands/commands.h
+++ b/chrome/browser/extensions/api/commands/commands.h
@@ -8,8 +8,8 @@
#include "chrome/browser/extensions/chrome_extension_function.h"
class GetAllCommandsFunction : public ChromeSyncExtensionFunction {
- virtual ~GetAllCommandsFunction() {}
- virtual bool RunSync() override;
+ ~GetAllCommandsFunction() override {}
+ bool RunSync() override;
DECLARE_EXTENSION_FUNCTION("commands.getAll", COMMANDS_GETALL)
};

Powered by Google App Engine
This is Rietveld 408576698