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

Unified Diff: content/browser/renderer_host/p2p/socket_host_tcp.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
« no previous file with comments | « no previous file | content/browser/renderer_host/p2p/socket_host_tcp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/p2p/socket_host_tcp.h
diff --git a/content/browser/renderer_host/p2p/socket_host_tcp.h b/content/browser/renderer_host/p2p/socket_host_tcp.h
index 01a9861ece6feea40c656aa8d5393d0ff085488c..bb003c8eb65451024b83f1cbba7aa7e33f713898 100644
--- a/content/browser/renderer_host/p2p/socket_host_tcp.h
+++ b/content/browser/renderer_host/p2p/socket_host_tcp.h
@@ -15,9 +15,9 @@
#include "net/base/ip_endpoint.h"
namespace net {
-class ClientSocket;
class DrainableIOBuffer;
class GrowableIOBuffer;
+class StreamSocket;
} // namespace net
class P2PSocketHostTcp : public P2PSocketHost {
@@ -27,7 +27,7 @@ class P2PSocketHostTcp : public P2PSocketHost {
virtual ~P2PSocketHostTcp();
bool InitAccepted(const net::IPEndPoint& remote_address,
- net::ClientSocket* socket);
+ net::StreamSocket* socket);
// P2PSocketHost overrides.
virtual bool Init(const net::IPEndPoint& local_address,
@@ -56,7 +56,7 @@ class P2PSocketHostTcp : public P2PSocketHost {
net::IPEndPoint remote_address_;
- scoped_ptr<net::ClientSocket> socket_;
+ scoped_ptr<net::StreamSocket> socket_;
scoped_refptr<net::GrowableIOBuffer> read_buffer_;
scoped_refptr<net::DrainableIOBuffer> write_buffer_;
« no previous file with comments | « no previous file | content/browser/renderer_host/p2p/socket_host_tcp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698