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

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

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (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 937605c96aad610b355281d6255fb9992fbbdbc4..1ecf2461b2ae9686cd402b565250fd1e1ff4a14b 100644
--- a/chrome/test/chromedriver/command_listener_proxy_unittest.cc
+++ b/chrome/test/chromedriver/command_listener_proxy_unittest.cc
@@ -17,7 +17,7 @@ class MockCommandListener : public CommandListener {
MockCommandListener() : called_(false) {}
virtual ~MockCommandListener() {}
- virtual Status BeforeCommand(const std::string& command_name) OVERRIDE {
+ virtual 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