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

Unified Diff: jingle/notifier/communicator/single_login_attempt_unittest.cc

Issue 628123002: Replacing the OVERRIDE with override and FINAL with final in jingle (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 | « jingle/notifier/communicator/single_login_attempt.h ('k') | jingle/notifier/listener/fake_push_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/communicator/single_login_attempt_unittest.cc
diff --git a/jingle/notifier/communicator/single_login_attempt_unittest.cc b/jingle/notifier/communicator/single_login_attempt_unittest.cc
index 237e9f1c015ccb5d3e87eb1c8c41f3ace78d8e82..281ae0dd29cdf51f921655c9b8c21d907237d579 100644
--- a/jingle/notifier/communicator/single_login_attempt_unittest.cc
+++ b/jingle/notifier/communicator/single_login_attempt_unittest.cc
@@ -36,21 +36,21 @@ class FakeDelegate : public SingleLoginAttempt::Delegate {
FakeDelegate() : state_(IDLE) {}
virtual void OnConnect(
- base::WeakPtr<buzz::XmppTaskParentInterface> base_task) OVERRIDE {
+ base::WeakPtr<buzz::XmppTaskParentInterface> base_task) override {
state_ = CONNECTED;
base_task_ = base_task;
}
- virtual void OnRedirect(const ServerInformation& redirect_server) OVERRIDE {
+ virtual void OnRedirect(const ServerInformation& redirect_server) override {
state_ = REDIRECTED;
redirect_server_ = redirect_server;
}
- virtual void OnCredentialsRejected() OVERRIDE {
+ virtual void OnCredentialsRejected() override {
state_ = CREDENTIALS_REJECTED;
}
- virtual void OnSettingsExhausted() OVERRIDE {
+ virtual void OnSettingsExhausted() override {
state_ = SETTINGS_EXHAUSTED;
}
@@ -97,7 +97,7 @@ class SingleLoginAttemptTest : public ::testing::Test {
"auth_mechanism"),
attempt_(new SingleLoginAttempt(login_settings_, &fake_delegate_)) {}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
message_loop_.RunUntilIdle();
}
« no previous file with comments | « jingle/notifier/communicator/single_login_attempt.h ('k') | jingle/notifier/listener/fake_push_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698