Index: net/quic/quic_chromium_client_stream.h |
diff --git a/net/quic/quic_chromium_client_stream.h b/net/quic/quic_chromium_client_stream.h |
index 41738956b910fac453c39298aee5232dd2f58236..45366d8ce722901901fe4e99f61b975346a851b5 100644 |
--- a/net/quic/quic_chromium_client_stream.h |
+++ b/net/quic/quic_chromium_client_stream.h |
@@ -79,6 +79,9 @@ class NET_EXPORT_PRIVATE QuicChromiumClientStream : public QuicSpdyStream { |
int WriteStreamData(base::StringPiece data, |
bool fin, |
const CompletionCallback& callback); |
+ int WritevStreamData(const std::vector<base::StringPiece>& data, |
+ bool fin, |
+ const CompletionCallback& callback); |
// Set new |delegate|. |delegate| must not be NULL. |
// If this stream has already received data, OnDataReceived() will be |
// called on the delegate. |