Index: jingle/notifier/base/ssl_adapter.cc |
diff --git a/remoting/jingle_glue/ssl_adapter.cc b/jingle/notifier/base/ssl_adapter.cc |
similarity index 70% |
rename from remoting/jingle_glue/ssl_adapter.cc |
rename to jingle/notifier/base/ssl_adapter.cc |
index 68d350cae5891cbcd6ba0b2f17b01f024505c729..2111244119af95b96c81b5f647b417bd570912a3 100644 |
--- a/remoting/jingle_glue/ssl_adapter.cc |
+++ b/jingle/notifier/base/ssl_adapter.cc |
@@ -2,26 +2,26 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "remoting/jingle_glue/ssl_adapter.h" |
+#include "jingle/notifier/base/ssl_adapter.h" |
#if defined(OS_WIN) |
#include "talk/base/ssladapter.h" |
#else |
-#include "remoting/jingle_glue/ssl_socket_adapter.h" |
+#include "jingle/notifier/communicator/ssl_socket_adapter.h" |
#endif |
-namespace remoting { |
+namespace notifier { |
talk_base::SSLAdapter* CreateSSLAdapter(talk_base::AsyncSocket* socket) { |
talk_base::SSLAdapter* ssl_adapter = |
#if defined(OS_WIN) |
talk_base::SSLAdapter::Create(socket); |
#else |
- remoting::SSLSocketAdapter::Create(socket); |
+ notifier::SSLSocketAdapter::Create(socket); |
#endif |
DCHECK(ssl_adapter); |
return ssl_adapter; |
} |
-} // namespace remoting |
+} // namespace notifier |