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

Unified Diff: jingle/notifier/listener/non_blocking_push_client_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
Index: jingle/notifier/listener/non_blocking_push_client_unittest.cc
diff --git a/jingle/notifier/listener/non_blocking_push_client_unittest.cc b/jingle/notifier/listener/non_blocking_push_client_unittest.cc
index 0066aa9b84376844727e415593f9e5417a0af609..8b7dac52a8e2392e167624ecf37f11df684db2b6 100644
--- a/jingle/notifier/listener/non_blocking_push_client_unittest.cc
+++ b/jingle/notifier/listener/non_blocking_push_client_unittest.cc
@@ -24,9 +24,9 @@ class NonBlockingPushClientTest : public testing::Test {
protected:
NonBlockingPushClientTest() : fake_push_client_(NULL) {}
- virtual ~NonBlockingPushClientTest() {}
+ ~NonBlockingPushClientTest() override {}
- virtual void SetUp() override {
+ void SetUp() override {
push_client_.reset(
new NonBlockingPushClient(
base::MessageLoopProxy::current(),
@@ -37,7 +37,7 @@ class NonBlockingPushClientTest : public testing::Test {
message_loop_.RunUntilIdle();
}
- virtual void TearDown() override {
+ void TearDown() override {
// Clear out any pending notifications before removing observers.
message_loop_.RunUntilIdle();
push_client_->RemoveObserver(&fake_observer_);
« no previous file with comments | « jingle/notifier/communicator/single_login_attempt_unittest.cc ('k') | jingle/notifier/listener/push_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698