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

Unified Diff: chrome/test/chromedriver/net/sync_websocket_impl_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/net/sync_websocket_impl.h ('k') | chrome/test/chromedriver/net/test_http_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/net/sync_websocket_impl_unittest.cc
diff --git a/chrome/test/chromedriver/net/sync_websocket_impl_unittest.cc b/chrome/test/chromedriver/net/sync_websocket_impl_unittest.cc
index 48cab8f77ba6356e942b6036c361ac96d0fbafb5..85723085fb1d5d288949c8d29a5a0fc063f745d6 100644
--- a/chrome/test/chromedriver/net/sync_websocket_impl_unittest.cc
+++ b/chrome/test/chromedriver/net/sync_websocket_impl_unittest.cc
@@ -27,7 +27,7 @@ class SyncWebSocketImplTest : public testing::Test {
long_timeout_(base::TimeDelta::FromMinutes(1)) {}
virtual ~SyncWebSocketImplTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
base::Thread::Options options(base::MessageLoop::TYPE_IO, 0);
ASSERT_TRUE(client_thread_.StartWithOptions(options));
context_getter_ = new URLRequestContextGetter(
@@ -35,7 +35,7 @@ class SyncWebSocketImplTest : public testing::Test {
ASSERT_TRUE(server_.Start());
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
server_.Stop();
}
« no previous file with comments | « chrome/test/chromedriver/net/sync_websocket_impl.h ('k') | chrome/test/chromedriver/net/test_http_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698