Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / jingle / notifier / base / fake_base_task.cc
index 3b51af4..af4ede0 100644 (file)
@@ -5,8 +5,8 @@
 #include "base/compiler_specific.h"
 #include "jingle/notifier/base/fake_base_task.h"
 #include "jingle/notifier/base/weak_xmpp_client.h"
-#include "talk/xmpp/asyncsocket.h"
 #include "testing/gmock/include/gmock/gmock.h"
+#include "webrtc/libjingle/xmpp/asyncsocket.h"
 
 namespace notifier {
 
@@ -39,11 +39,9 @@ class FakeWeakXmppClient : public notifier::WeakXmppClient {
       : notifier::WeakXmppClient(parent),
         jid_("test@example.com/testresource") {}
 
-  virtual ~FakeWeakXmppClient() {}
+  ~FakeWeakXmppClient() override {}
 
-  virtual const buzz::Jid& jid() const OVERRIDE {
-    return jid_;
-  }
+  const buzz::Jid& jid() const override { return jid_; }
 
  private:
   buzz::Jid jid_;