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

Side by Side Diff: net/spdy/spdy_protocol.cc

Issue 353443005: SpdyFramer hooks for parsing and handling PRIORITY frames. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Additional override => OVERRIDE. Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/spdy/spdy_protocol.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « net/spdy/spdy_protocol.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698