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

Unified Diff: net/socket/ssl_server_socket_unittest.cc

Issue 6800009: Attn: Mike Belshe Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 9 years, 9 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: net/socket/ssl_server_socket_unittest.cc
===================================================================
--- net/socket/ssl_server_socket_unittest.cc (revision 80449)
+++ net/socket/ssl_server_socket_unittest.cc (working copy)
@@ -120,6 +120,11 @@
return outgoing_->Write(buf, buf_len, callback);
}
+ virtual int Write(IOBuffer* buf, int buf_len, int sctp_stream_id,
+ CompletionCallback* callback) {
Mike Belshe 2011/04/06 18:32:53 This is old...
+ return Write(buf, buf_len, callback);
+ }
+
virtual bool SetReceiveBufferSize(int32 size) {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698