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

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

Issue 6930014: Rename ClientSocket to StreamSocket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 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
index a60e22fb85bf4261dd22d0ecf71145fb79825b8b..af05ac5c338157fd69c0d8e6db4dc0d89ce6308b 100644
--- a/jingle/notifier/base/resolving_client_socket_factory.h
+++ b/jingle/notifier/base/resolving_client_socket_factory.h
@@ -7,11 +7,11 @@
namespace net {
-class ClientSocket;
class ClientSocketHandle;
class HostPortPair;
class NetLog;
class SSLClientSocket;
+class StreamSocket;
}
// TODO(sanjeevr): Move this to net/
@@ -24,7 +24,7 @@ class ResolvingClientSocketFactory {
public:
virtual ~ResolvingClientSocketFactory() { }
// Method to create a transport socket using a HostPortPair.
- virtual net::ClientSocket* CreateTransportClientSocket(
+ virtual net::StreamSocket* CreateTransportClientSocket(
const net::HostPortPair& host_and_port, net::NetLog* net_log) = 0;
virtual net::SSLClientSocket* CreateSSLClientSocket(
« no previous file with comments | « jingle/notifier/base/proxy_resolving_client_socket.h ('k') | jingle/notifier/base/xmpp_client_socket_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698