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

Unified Diff: jingle/notifier/base/resolving_client_socket_factory.h

Issue 10817013: Move ChromeAsyncSocket to jingle/glue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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: jingle/notifier/base/resolving_client_socket_factory.h
diff --git a/jingle/notifier/base/resolving_client_socket_factory.h b/jingle/notifier/base/resolving_client_socket_factory.h
deleted file mode 100644
index 7f5af1f165b4efeebcd1ae8ac9e0d01301dc0140..0000000000000000000000000000000000000000
--- a/jingle/notifier/base/resolving_client_socket_factory.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef JINGLE_NOTIFIER_BASE_RESOLVING_CLIENT_SOCKET_FACTORY_H_
-#define JINGLE_NOTIFIER_BASE_RESOLVING_CLIENT_SOCKET_FACTORY_H_
-
-
-namespace net {
-class ClientSocketHandle;
-class HostPortPair;
-class SSLClientSocket;
-class StreamSocket;
-}
-
-// TODO(sanjeevr): Move this to net/
-
-namespace notifier {
-
-// Interface for a ClientSocketFactory that creates ClientSockets that can
-// resolve host names and tunnel through proxies.
-class ResolvingClientSocketFactory {
- public:
- virtual ~ResolvingClientSocketFactory() { }
- // Method to create a transport socket using a HostPortPair.
- virtual net::StreamSocket* CreateTransportClientSocket(
- const net::HostPortPair& host_and_port) = 0;
-
- virtual net::SSLClientSocket* CreateSSLClientSocket(
- net::ClientSocketHandle* transport_socket,
- const net::HostPortPair& host_and_port) = 0;
-};
-
-} // namespace notifier
-
-#endif // JINGLE_NOTIFIER_BASE_RESOLVING_CLIENT_SOCKET_FACTORY_H_
« no previous file with comments | « jingle/notifier/base/proxy_resolving_client_socket_unittest.cc ('k') | jingle/notifier/base/xmpp_client_socket_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698