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

Unified Diff: chrome/test/chromedriver/command_listener_proxy_unittest.cc

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
« no previous file with comments | « chrome/test/chromedriver/command_listener_proxy.h ('k') | chrome/test/chromedriver/commands_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/command_listener_proxy_unittest.cc
diff --git a/chrome/test/chromedriver/command_listener_proxy_unittest.cc b/chrome/test/chromedriver/command_listener_proxy_unittest.cc
index 1ecf2461b2ae9686cd402b565250fd1e1ff4a14b..0794daab8e27c64a95c28ee0b749a2fb9b8005a3 100644
--- a/chrome/test/chromedriver/command_listener_proxy_unittest.cc
+++ b/chrome/test/chromedriver/command_listener_proxy_unittest.cc
@@ -15,9 +15,9 @@ namespace {
class MockCommandListener : public CommandListener {
public:
MockCommandListener() : called_(false) {}
- virtual ~MockCommandListener() {}
+ ~MockCommandListener() override {}
- virtual Status BeforeCommand(const std::string& command_name) override {
+ Status BeforeCommand(const std::string& command_name) override {
called_ = true;
EXPECT_STREQ("cmd", command_name.c_str());
return Status(kOk);
« no previous file with comments | « chrome/test/chromedriver/command_listener_proxy.h ('k') | chrome/test/chromedriver/commands_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698