Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / jingle / notifier / listener / send_ping_task.h
index 9cd8b22..5c980ac 100644 (file)
@@ -10,7 +10,7 @@
 #include "base/basictypes.h"
 #include "base/compiler_specific.h"
 #include "base/gtest_prod_util.h"
-#include "talk/xmpp/xmpptask.h"
+#include "webrtc/libjingle/xmpp/xmpptask.h"
 
 namespace buzz {
 class XmlElement;
@@ -29,12 +29,12 @@ class SendPingTask : public buzz::XmppTask {
   };
 
   SendPingTask(buzz::XmppTaskParentInterface* parent, Delegate* delegate);
-  virtual ~SendPingTask();
+  ~SendPingTask() override;
 
   // Overridden from buzz::XmppTask.
-  virtual int ProcessStart() OVERRIDE;
-  virtual int ProcessResponse() OVERRIDE;
-  virtual bool HandleStanza(const buzz::XmlElement* stanza) OVERRIDE;
+  int ProcessStart() override;
+  int ProcessResponse() override;
+  bool HandleStanza(const buzz::XmlElement* stanza) override;
 
  private:
   static buzz::XmlElement* MakePingStanza(const std::string& task_id);