Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / components / invalidation / push_client_channel.h
index 37146a3..51b0954 100644 (file)
@@ -30,27 +30,27 @@ class INVALIDATION_EXPORT_PRIVATE PushClientChannel
   // is destroyed.
   explicit PushClientChannel(scoped_ptr<notifier::PushClient> push_client);
 
-  virtual ~PushClientChannel();
+  ~PushClientChannel() override;
 
   // invalidation::NetworkChannel implementation.
-  virtual void SendMessage(const std::string& message) OVERRIDE;
-  virtual void RequestDetailedStatus(
-      base::Callback<void(const base::DictionaryValue&)> callback) OVERRIDE;
+  void SendMessage(const std::string& message) override;
+  void RequestDetailedStatus(
+      base::Callback<void(const base::DictionaryValue&)> callback) override;
 
   // SyncNetworkChannel implementation.
   // If not connected, connects with the given credentials.  If
   // already connected, the next connection attempt will use the given
   // credentials.
-  virtual void UpdateCredentials(const std::string& email,
-      const std::string& token) OVERRIDE;
-  virtual int GetInvalidationClientType() OVERRIDE;
+  void UpdateCredentials(const std::string& email,
+                         const std::string& token) override;
+  int GetInvalidationClientType() override;
 
   // notifier::PushClient::Observer implementation.
-  virtual void OnNotificationsEnabled() OVERRIDE;
-  virtual void OnNotificationsDisabled(
-      notifier::NotificationsDisabledReason reason) OVERRIDE;
-  virtual void OnIncomingNotification(
-      const notifier::Notification& notification) OVERRIDE;
+  void OnNotificationsEnabled() override;
+  void OnNotificationsDisabled(
+      notifier::NotificationsDisabledReason reason) override;
+  void OnIncomingNotification(
+      const notifier::Notification& notification) override;
 
   const std::string& GetServiceContextForTest() const;