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

Unified Diff: net/socket/socket.h

Issue 8801005: base::Bind: Convert Socket::Read. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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: net/socket/socket.h
diff --git a/net/socket/socket.h b/net/socket/socket.h
index 90185a2c9ab5586e93876d5fa3cc85dd25190a82..c185c44aa30ef9689157769f7e57f25ad634ab30 100644
--- a/net/socket/socket.h
+++ b/net/socket/socket.h
@@ -31,6 +31,8 @@ class NET_EXPORT Socket {
// callback will not be invoked.
virtual int Read(IOBuffer* buf, int buf_len,
OldCompletionCallback* callback) = 0;
+ virtual int Read(IOBuffer* buf, int buf_len,
+ const CompletionCallback& callback) = 0;
// Writes data, up to |buf_len| bytes, to the socket. Note: data may be
// written partially. The number of bytes written is returned, or an error

Powered by Google App Engine
This is Rietveld 408576698