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

Side by Side Diff: net/spdy/buffered_spdy_framer.h

Issue 12262004: Remove SpdyRstStreamControlFrame struct. Useful for SPDY 4 development. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « no previous file | net/spdy/buffered_spdy_framer.cc » ('j') | 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 #ifndef NET_SPDY_BUFFERED_SPDY_FRAMER_H_ 5 #ifndef NET_SPDY_BUFFERED_SPDY_FRAMER_H_
6 #define NET_SPDY_BUFFERED_SPDY_FRAMER_H_ 6 #define NET_SPDY_BUFFERED_SPDY_FRAMER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 SpdyStreamId associated_stream_id, 151 SpdyStreamId associated_stream_id,
152 SpdyPriority priority, 152 SpdyPriority priority,
153 uint8 credential_slot, 153 uint8 credential_slot,
154 SpdyControlFlags flags, 154 SpdyControlFlags flags,
155 bool compressed, 155 bool compressed,
156 const SpdyHeaderBlock* headers); 156 const SpdyHeaderBlock* headers);
157 SpdyFrame* CreateSynReply(SpdyStreamId stream_id, 157 SpdyFrame* CreateSynReply(SpdyStreamId stream_id,
158 SpdyControlFlags flags, 158 SpdyControlFlags flags,
159 bool compressed, 159 bool compressed,
160 const SpdyHeaderBlock* headers); 160 const SpdyHeaderBlock* headers);
161 SpdyRstStreamControlFrame* CreateRstStream(SpdyStreamId stream_id, 161 SpdyFrame* CreateRstStream(SpdyStreamId stream_id,
162 SpdyRstStreamStatus status) const; 162 SpdyRstStreamStatus status) const;
163 SpdySettingsControlFrame* CreateSettings(const SettingsMap& values) const; 163 SpdySettingsControlFrame* CreateSettings(const SettingsMap& values) const;
164 SpdyFrame* CreatePingFrame(uint32 unique_id) const; 164 SpdyFrame* CreatePingFrame(uint32 unique_id) const;
165 SpdyFrame* CreateGoAway( 165 SpdyFrame* CreateGoAway(
166 SpdyStreamId last_accepted_stream_id, 166 SpdyStreamId last_accepted_stream_id,
167 SpdyGoAwayStatus status) const; 167 SpdyGoAwayStatus status) const;
168 SpdyHeadersControlFrame* CreateHeaders(SpdyStreamId stream_id, 168 SpdyHeadersControlFrame* CreateHeaders(SpdyStreamId stream_id,
169 SpdyControlFlags flags, 169 SpdyControlFlags flags,
170 bool compressed, 170 bool compressed,
171 const SpdyHeaderBlock* headers); 171 const SpdyHeaderBlock* headers);
172 SpdyFrame* CreateWindowUpdate( 172 SpdyFrame* CreateWindowUpdate(
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 bool unidirectional; 211 bool unidirectional;
212 }; 212 };
213 scoped_ptr<ControlFrameFields> control_frame_fields_; 213 scoped_ptr<ControlFrameFields> control_frame_fields_;
214 214
215 DISALLOW_COPY_AND_ASSIGN(BufferedSpdyFramer); 215 DISALLOW_COPY_AND_ASSIGN(BufferedSpdyFramer);
216 }; 216 };
217 217
218 } // namespace net 218 } // namespace net
219 219
220 #endif // NET_SPDY_BUFFERED_SPDY_FRAMER_H_ 220 #endif // NET_SPDY_BUFFERED_SPDY_FRAMER_H_
OLDNEW
« no previous file with comments | « no previous file | net/spdy/buffered_spdy_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698