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

Unified Diff: jingle/notifier/communicator/login.h

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/base/weak_xmpp_client.h ('k') | jingle/notifier/communicator/single_login_attempt.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/communicator/login.h
diff --git a/jingle/notifier/communicator/login.h b/jingle/notifier/communicator/login.h
index 463eb1a88a286e621ee2f3517d4c665404eedfc6..df02cc070b9a2d519b3d0dba90e0dcca2e1f6065 100644
--- a/jingle/notifier/communicator/login.h
+++ b/jingle/notifier/communicator/login.h
@@ -83,21 +83,21 @@ class Login : public net::NetworkChangeNotifier::IPAddressObserver,
void UpdateXmppSettings(const buzz::XmppClientSettings& user_settings);
// net::NetworkChangeNotifier::IPAddressObserver implementation.
- virtual void OnIPAddressChanged() OVERRIDE;
+ virtual void OnIPAddressChanged() override;
// net::NetworkChangeNotifier::ConnectionTypeObserver implementation.
virtual void OnConnectionTypeChanged(
- net::NetworkChangeNotifier::ConnectionType type) OVERRIDE;
+ net::NetworkChangeNotifier::ConnectionType type) override;
// net::NetworkChangeNotifier::DNSObserver implementation.
- virtual void OnDNSChanged() OVERRIDE;
+ virtual void OnDNSChanged() override;
// SingleLoginAttempt::Delegate implementation.
virtual void OnConnect(
- base::WeakPtr<buzz::XmppTaskParentInterface> base_task) OVERRIDE;
- virtual void OnRedirect(const ServerInformation& redirect_server) OVERRIDE;
- virtual void OnCredentialsRejected() OVERRIDE;
- virtual void OnSettingsExhausted() OVERRIDE;
+ base::WeakPtr<buzz::XmppTaskParentInterface> base_task) override;
+ virtual void OnRedirect(const ServerInformation& redirect_server) override;
+ virtual void OnCredentialsRejected() override;
+ virtual void OnSettingsExhausted() override;
private:
// Called by the various network notifications.
« no previous file with comments | « jingle/notifier/base/weak_xmpp_client.h ('k') | jingle/notifier/communicator/single_login_attempt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698