Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Unified Diff: remoting/jingle_glue/ssl_adapter.h

Issue 3298021: Removed use of XmppSocketAdapter by sync. (Closed)
Patch Set: Fixed checkdeps problem Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/jingle_glue/ssl_adapter.h
diff --git a/jingle/notifier/base/ssl_adapter.h b/remoting/jingle_glue/ssl_adapter.h
similarity index 75%
rename from jingle/notifier/base/ssl_adapter.h
rename to remoting/jingle_glue/ssl_adapter.h
index 32517cdc7644d597852c4e7525d7faa0a20153e4..56b03bef3fe6397eef36cd4f849d6f2659daf287 100644
--- a/jingle/notifier/base/ssl_adapter.h
+++ b/remoting/jingle_glue/ssl_adapter.h
@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef JINGLE_NOTIFIER_BASE_SSL_ADAPTER_H_
-#define JINGLE_NOTIFIER_BASE_SSL_ADAPTER_H_
+#ifndef REMOTING_JINGLE_GLUE_SSL_ADAPTER_H_
+#define REMOTING_JINGLE_GLUE_SSL_ADAPTER_H_
namespace talk_base {
class AsyncSocket;
class SSLAdapter;
} // namespace talk_base
-namespace notifier {
+namespace remoting {
// Wraps the given socket in a platform-dependent SSLAdapter
// implementation.
@@ -23,11 +23,11 @@ class SSLAdapterSocketFactory : public SocketFactory {
public:
virtual talk_base::SSLAdapter* CreateSSLAdapter(
talk_base::AsyncSocket* socket) {
- return ::notifier::CreateSSLAdapter(socket);
+ return ::remoting::CreateSSLAdapter(socket);
}
};
-} // namespace notifier
+} // namespace remoting
-#endif // JINGLE_NOTIFIER_BASE_SSL_ADAPTER_H_
+#endif // REMOTING_JINGLE_GLUE_SSL_ADAPTER_H_

Powered by Google App Engine
This is Rietveld 408576698