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

Unified Diff: net/base/client_socket_pool_unittest.cc

Issue 87073: Extend the use of IOBuffers to the code underneath... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | net/base/socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/client_socket_pool_unittest.cc
===================================================================
--- net/base/client_socket_pool_unittest.cc (revision 14682)
+++ net/base/client_socket_pool_unittest.cc (working copy)
@@ -43,11 +43,11 @@
}
// Socket methods:
- virtual int Read(char* buf, int buf_len,
+ virtual int Read(net::IOBuffer* buf, int buf_len,
net::CompletionCallback* callback) {
return net::ERR_FAILED;
}
- virtual int Write(const char* buf, int buf_len,
+ virtual int Write(net::IOBuffer* buf, int buf_len,
net::CompletionCallback* callback) {
return net::ERR_FAILED;
}
« no previous file with comments | « no previous file | net/base/socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698