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

Unified Diff: jingle/glue/chrome_async_socket_unittest.cc

Issue 822833002: Standardize usage of virtual/override/final specifiers in jingle/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « jingle/glue/channel_socket_adapter_unittest.cc ('k') | jingle/glue/fake_ssl_client_socket_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/glue/chrome_async_socket_unittest.cc
diff --git a/jingle/glue/chrome_async_socket_unittest.cc b/jingle/glue/chrome_async_socket_unittest.cc
index 4449d382267e459635aea6211d128a2fe59c6d84..4742712d8e4c448b433f5387f03d701695ea2644 100644
--- a/jingle/glue/chrome_async_socket_unittest.cc
+++ b/jingle/glue/chrome_async_socket_unittest.cc
@@ -154,9 +154,9 @@ class ChromeAsyncSocketTest
message_loop_.reset(new base::MessageLoop(pump.Pass()));
}
- virtual ~ChromeAsyncSocketTest() {}
+ ~ChromeAsyncSocketTest() override {}
- virtual void SetUp() {
+ void SetUp() override {
scoped_ptr<net::MockClientSocketFactory> mock_client_socket_factory(
new net::MockClientSocketFactory());
mock_client_socket_factory->AddSocketDataProvider(
@@ -189,7 +189,7 @@ class ChromeAsyncSocketTest
this, &ChromeAsyncSocketTest::OnError);
}
- virtual void TearDown() {
+ void TearDown() override {
// Run any tasks that we forgot to pump.
message_loop_->RunUntilIdle();
ExpectClosed();
« no previous file with comments | « jingle/glue/channel_socket_adapter_unittest.cc ('k') | jingle/glue/fake_ssl_client_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698