| 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();
|
|
|