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

Unified Diff: net/socket/ssl_server_socket_unittest.cc

Issue 8801004: base::Bind: Convert StreamSocket::Connect. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fixes. 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/ssl_server_socket_unittest.cc
diff --git a/net/socket/ssl_server_socket_unittest.cc b/net/socket/ssl_server_socket_unittest.cc
index 2340967fdd9224f7dde04fc84d4e47a1c826e6d6..5af50f8f4764ad3ac1191cf2edb9cb00b5a7d3c7 100644
--- a/net/socket/ssl_server_socket_unittest.cc
+++ b/net/socket/ssl_server_socket_unittest.cc
@@ -147,6 +147,9 @@ class FakeSocket : public StreamSocket {
virtual int Connect(OldCompletionCallback* callback) {
return net::OK;
}
+ virtual int Connect(const CompletionCallback& callback) {
+ return net::OK;
+ }
virtual void Disconnect() {}

Powered by Google App Engine
This is Rietveld 408576698