OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/spdy/spdy_protocol.h" | 5 #include "net/spdy/spdy_protocol.h" |
6 | 6 |
7 namespace net { | 7 namespace net { |
8 | 8 |
9 SpdyFrameWithNameValueBlockIR::SpdyFrameWithNameValueBlockIR( | 9 SpdyFrameWithNameValueBlockIR::SpdyFrameWithNameValueBlockIR( |
10 SpdyStreamId stream_id) : SpdyFrameWithFinIR(stream_id) {} | 10 SpdyStreamId stream_id) : SpdyFrameWithFinIR(stream_id) {} |
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 | 819 |
820 SpdyAltSvcIR::SpdyAltSvcIR(SpdyStreamId stream_id) | 820 SpdyAltSvcIR::SpdyAltSvcIR(SpdyStreamId stream_id) |
821 : SpdyFrameWithStreamIdIR(stream_id), | 821 : SpdyFrameWithStreamIdIR(stream_id), |
822 max_age_(0), | 822 max_age_(0), |
823 port_(0) {} | 823 port_(0) {} |
824 | 824 |
825 void SpdyAltSvcIR::Visit(SpdyFrameVisitor* visitor) const { | 825 void SpdyAltSvcIR::Visit(SpdyFrameVisitor* visitor) const { |
826 return visitor->VisitAltSvc(*this); | 826 return visitor->VisitAltSvc(*this); |
827 } | 827 } |
828 | 828 |
| 829 SpdyPriorityIR::SpdyPriorityIR(SpdyStreamId stream_id) |
| 830 : SpdyFrameWithStreamIdIR(stream_id) { |
| 831 } |
| 832 |
| 833 SpdyPriorityIR::SpdyPriorityIR(SpdyStreamId stream_id, |
| 834 SpdyStreamId parent_stream_id, |
| 835 uint8 weight, |
| 836 bool exclusive) |
| 837 : SpdyFrameWithStreamIdIR(stream_id), |
| 838 parent_stream_id_(parent_stream_id), |
| 839 weight_(weight), |
| 840 exclusive_(exclusive) { |
| 841 } |
| 842 |
| 843 void SpdyPriorityIR::Visit(SpdyFrameVisitor* visitor) const { |
| 844 return visitor->VisitPriority(*this); |
| 845 } |
| 846 |
829 } // namespace net | 847 } // namespace net |
OLD | NEW |