Index: net/spdy/spdy_stream.h |
diff --git a/net/spdy/spdy_stream.h b/net/spdy/spdy_stream.h |
index 41d14ef2ae3781914676e6b5d2f6d925bd8a33a3..01309fdc60e359931258d1af9e2c7c2eb0d34d8b 100644 |
--- a/net/spdy/spdy_stream.h |
+++ b/net/spdy/spdy_stream.h |
@@ -142,6 +142,7 @@ class NET_EXPORT_PRIVATE SpdyStream { |
const GURL& url() const { return url_; } |
RequestPriority priority() const { return priority_; } |
+ void set_priority(RequestPriority p) { priority_ = p; } |
int32_t send_window_size() const { return send_window_size_; } |
@@ -433,7 +434,7 @@ class NET_EXPORT_PRIVATE SpdyStream { |
SpdyStreamId stream_id_; |
const GURL url_; |
- const RequestPriority priority_; |
+ RequestPriority priority_; |
bool send_stalled_by_flow_control_; |