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

Unified Diff: jingle/notifier/listener/xmpp_push_client.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/listener/send_ping_task.h ('k') | jingle/notifier/listener/xmpp_push_client_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/listener/xmpp_push_client.h
diff --git a/jingle/notifier/listener/xmpp_push_client.h b/jingle/notifier/listener/xmpp_push_client.h
index 08a1811706d62a36a05882bb0a2bde8cec196957..4c6fea573696916734b1435495f20bcfe66252eb 100644
--- a/jingle/notifier/listener/xmpp_push_client.h
+++ b/jingle/notifier/listener/xmpp_push_client.h
@@ -44,31 +44,31 @@ class XmppPushClient :
virtual ~XmppPushClient();
// PushClient implementation.
- virtual void AddObserver(PushClientObserver* observer) OVERRIDE;
- virtual void RemoveObserver(PushClientObserver* observer) OVERRIDE;
+ virtual void AddObserver(PushClientObserver* observer) override;
+ virtual void RemoveObserver(PushClientObserver* observer) override;
virtual void UpdateSubscriptions(
- const SubscriptionList& subscriptions) OVERRIDE;
+ const SubscriptionList& subscriptions) override;
virtual void UpdateCredentials(
- const std::string& email, const std::string& token) OVERRIDE;
- virtual void SendNotification(const Notification& notification) OVERRIDE;
- virtual void SendPing() OVERRIDE;
+ const std::string& email, const std::string& token) override;
+ virtual void SendNotification(const Notification& notification) override;
+ virtual void SendPing() override;
// Login::Delegate implementation.
virtual void OnConnect(
- base::WeakPtr<buzz::XmppTaskParentInterface> base_task) OVERRIDE;
- virtual void OnTransientDisconnection() OVERRIDE;
- virtual void OnCredentialsRejected() OVERRIDE;
+ base::WeakPtr<buzz::XmppTaskParentInterface> base_task) override;
+ virtual void OnTransientDisconnection() override;
+ virtual void OnCredentialsRejected() override;
// PushNotificationsListenTaskDelegate implementation.
virtual void OnNotificationReceived(
- const Notification& notification) OVERRIDE;
+ const Notification& notification) override;
// PushNotificationsSubscribeTaskDelegate implementation.
- virtual void OnSubscribed() OVERRIDE;
- virtual void OnSubscriptionError() OVERRIDE;
+ virtual void OnSubscribed() override;
+ virtual void OnSubscriptionError() override;
// SendPingTaskDelegate implementation.
- virtual void OnPingResponseReceived() OVERRIDE;
+ virtual void OnPingResponseReceived() override;
private:
base::ThreadChecker thread_checker_;
« no previous file with comments | « jingle/notifier/listener/send_ping_task.h ('k') | jingle/notifier/listener/xmpp_push_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698