Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / jingle / notifier / listener / fake_push_client.h
index 2c1340d..3c12f51 100644 (file)
@@ -19,17 +19,16 @@ namespace notifier {
 class FakePushClient : public PushClient {
  public:
   FakePushClient();
-  virtual ~FakePushClient();
+  ~FakePushClient() override;
 
   // PushClient implementation.
-  virtual void AddObserver(PushClientObserver* observer) OVERRIDE;
-  virtual void RemoveObserver(PushClientObserver* observer) OVERRIDE;
-  virtual void UpdateSubscriptions(
-      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;
+  void AddObserver(PushClientObserver* observer) override;
+  void RemoveObserver(PushClientObserver* observer) override;
+  void UpdateSubscriptions(const SubscriptionList& subscriptions) override;
+  void UpdateCredentials(const std::string& email,
+                         const std::string& token) override;
+  void SendNotification(const Notification& notification) override;
+  void SendPing() override;
 
   // Triggers OnNotificationsEnabled on all observers.
   void EnableNotifications();