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

Unified Diff: jingle/notifier/listener/fake_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
Index: jingle/notifier/listener/fake_push_client.h
diff --git a/jingle/notifier/listener/fake_push_client.h b/jingle/notifier/listener/fake_push_client.h
index 2c1340de88b5ec288618cb979db492ac37dfdccd..c97d3973982c1397bfc45aaef1761a2381ccb34e 100644
--- a/jingle/notifier/listener/fake_push_client.h
+++ b/jingle/notifier/listener/fake_push_client.h
@@ -22,14 +22,14 @@ class FakePushClient : public PushClient {
virtual ~FakePushClient();
// 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;
// Triggers OnNotificationsEnabled on all observers.
void EnableNotifications();
« no previous file with comments | « jingle/notifier/communicator/single_login_attempt_unittest.cc ('k') | jingle/notifier/listener/fake_push_client_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698