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_; |