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

Unified Diff: net/spdy/spdy_http_stream.cc

Issue 2596703002: http2: Update priorities of pushed streams (Closed)
Patch Set: Created 4 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/spdy/spdy_http_stream.cc
diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc
index ec9bf878086c099f838aac3f7fe562e9e6200191..8ad561f1da8a9af42b465add12402a5470ec08bd 100644
--- a/net/spdy/spdy_http_stream.cc
+++ b/net/spdy/spdy_http_stream.cc
@@ -71,8 +71,8 @@ int SpdyHttpStream::InitializeStream(const HttpRequestInfo* request_info,
request_info_ = request_info;
if (request_info_->method == "GET") {
- int error = spdy_session_->GetPushStream(request_info_->url, &stream_,
- stream_net_log);
+ int error = spdy_session_->GetPushStream(request_info_->url, priority,
+ &stream_, stream_net_log);
if (error != OK)
return error;

Powered by Google App Engine
This is Rietveld 408576698