| Index: net/spdy/spdy_protocol.h
|
| diff --git a/net/spdy/spdy_protocol.h b/net/spdy/spdy_protocol.h
|
| index 83201f55b0c67da62e6cbf71dc68f7ece0aa3a5d..a620da021beb30b3bebb667170de2ff99928ab70 100644
|
| --- a/net/spdy/spdy_protocol.h
|
| +++ b/net/spdy/spdy_protocol.h
|
| @@ -971,8 +971,8 @@ class NET_EXPORT_PRIVATE SpdyHeadersIR : public SpdyFrameWithHeaderBlockIR {
|
|
|
| bool has_priority() const { return has_priority_; }
|
| void set_has_priority(bool has_priority) { has_priority_ = has_priority; }
|
| - uint32_t priority() const { return priority_; }
|
| - void set_priority(SpdyPriority priority) { priority_ = priority; }
|
| + int weight() const { return weight_; }
|
| + void set_weight(int weight) { weight_ = weight; }
|
| SpdyStreamId parent_stream_id() const { return parent_stream_id_; }
|
| void set_parent_stream_id(SpdyStreamId id) { parent_stream_id_ = id; }
|
| bool exclusive() const { return exclusive_; }
|
| @@ -989,8 +989,7 @@ class NET_EXPORT_PRIVATE SpdyHeadersIR : public SpdyFrameWithHeaderBlockIR {
|
|
|
| private:
|
| bool has_priority_ = false;
|
| - // 31-bit priority.
|
| - uint32_t priority_ = 0;
|
| + int weight_ = kHttp2DefaultStreamWeight;
|
| SpdyStreamId parent_stream_id_ = 0;
|
| bool exclusive_ = false;
|
| bool padded_ = false;
|
|
|