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

Unified Diff: chrome/test/chromedriver/session_commands_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
Index: chrome/test/chromedriver/session_commands_unittest.cc
diff --git a/chrome/test/chromedriver/session_commands_unittest.cc b/chrome/test/chromedriver/session_commands_unittest.cc
index d25d9ebc3305cde285e6499872b5bb5385e49e4d..0ca527deeeacb7798b5d68524888be11479ef18b 100644
--- a/chrome/test/chromedriver/session_commands_unittest.cc
+++ b/chrome/test/chromedriver/session_commands_unittest.cc
@@ -50,7 +50,7 @@ class DetachChrome : public StubChrome {
virtual ~DetachChrome() {}
// Overridden from Chrome:
- virtual Status Quit() OVERRIDE {
+ virtual Status Quit() override {
quit_called_ = true;
return Status(kOk);
}
@@ -98,7 +98,7 @@ class FailsToQuitChrome : public StubChrome {
virtual ~FailsToQuitChrome() {}
// Overridden from Chrome:
- virtual Status Quit() OVERRIDE {
+ virtual Status Quit() override {
return Status(kUnknownError);
}
};
« no previous file with comments | « chrome/test/chromedriver/server/chromedriver_server.cc ('k') | chrome/test/chromedriver/session_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698