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

Unified Diff: net/tools/quic/quic_spdy_client_stream.cc

Issue 789103013: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « net/tools/quic/quic_spdy_client_stream.h ('k') | net/tools/quic/test_tools/quic_test_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_spdy_client_stream.cc
diff --git a/net/tools/quic/quic_spdy_client_stream.cc b/net/tools/quic/quic_spdy_client_stream.cc
index 3618df6c08e1c91dd77a08ee87e6fe63759706ad..2d649cda8d1781bcde030ef132e153b09ea23a57 100644
--- a/net/tools/quic/quic_spdy_client_stream.cc
+++ b/net/tools/quic/quic_spdy_client_stream.cc
@@ -119,7 +119,14 @@ int QuicSpdyClientStream::ParseResponseHeaders() {
}
void QuicSpdyClientStream::SendBody(const string& data, bool fin) {
- WriteOrBufferData(data, fin, nullptr);
+ SendBody(data, fin, nullptr);
+}
+
+void QuicSpdyClientStream::SendBody(
+ const string& data,
+ bool fin,
+ QuicAckNotifier::DelegateInterface* delegate) {
+ WriteOrBufferData(data, fin, delegate);
}
} // namespace tools
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream.h ('k') | net/tools/quic/test_tools/quic_test_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698