Index: remoting/jingle_glue/ssl_adapter.cc |
diff --git a/jingle/notifier/base/ssl_adapter.cc b/remoting/jingle_glue/ssl_adapter.cc |
similarity index 70% |
rename from jingle/notifier/base/ssl_adapter.cc |
rename to remoting/jingle_glue/ssl_adapter.cc |
index 2111244119af95b96c81b5f647b417bd570912a3..68d350cae5891cbcd6ba0b2f17b01f024505c729 100644 |
--- a/jingle/notifier/base/ssl_adapter.cc |
+++ b/remoting/jingle_glue/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 "jingle/notifier/base/ssl_adapter.h" |
+#include "remoting/jingle_glue/ssl_adapter.h" |
#if defined(OS_WIN) |
#include "talk/base/ssladapter.h" |
#else |
-#include "jingle/notifier/communicator/ssl_socket_adapter.h" |
+#include "remoting/jingle_glue/ssl_socket_adapter.h" |
#endif |
-namespace notifier { |
+namespace remoting { |
talk_base::SSLAdapter* CreateSSLAdapter(talk_base::AsyncSocket* socket) { |
talk_base::SSLAdapter* ssl_adapter = |
#if defined(OS_WIN) |
talk_base::SSLAdapter::Create(socket); |
#else |
- notifier::SSLSocketAdapter::Create(socket); |
+ remoting::SSLSocketAdapter::Create(socket); |
#endif |
DCHECK(ssl_adapter); |
return ssl_adapter; |
} |
-} // namespace notifier |
+} // namespace remoting |