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

Unified Diff: chrome/test/chromedriver/command_listener_proxy.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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/test/chromedriver/command_listener_proxy.h
diff --git a/chrome/test/chromedriver/command_listener_proxy.h b/chrome/test/chromedriver/command_listener_proxy.h
index dea86830fef7ea85ae48790e4813c9a1630ceeae..213665f49ac8f9ad036bef4ecb9bc7295dfe5e96 100644
--- a/chrome/test/chromedriver/command_listener_proxy.h
+++ b/chrome/test/chromedriver/command_listener_proxy.h
@@ -13,13 +13,13 @@
class CommandListenerProxy : public CommandListener {
public:
- virtual ~CommandListenerProxy();
+ ~CommandListenerProxy() override;
// |command_listener| must not be null.
explicit CommandListenerProxy(CommandListener* command_listener);
// Forwards commands to |command_listener_|.
- virtual Status BeforeCommand(const std::string& command_name) override;
+ Status BeforeCommand(const std::string& command_name) override;
private:
CommandListener* const command_listener_;
« no previous file with comments | « chrome/test/chromedriver/chrome/web_view_impl_unittest.cc ('k') | chrome/test/chromedriver/command_listener_proxy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698