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

Unified Diff: net/spdy/spdy_io_buffer.h

Issue 6800009: Attn: Mike Belshe Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 9 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: net/spdy/spdy_io_buffer.h
===================================================================
--- net/spdy/spdy_io_buffer.h (revision 80449)
+++ net/spdy/spdy_io_buffer.h (working copy)
@@ -35,6 +35,12 @@
void release();
int priority() const { return priority_; }
const scoped_refptr<SpdyStream>& stream() const { return stream_; }
+ uint16 sctp_stream_id() {
+ return buffer()->sctp_stream_id();
+ }
+ void set_sctp_stream_id(uint16 sctp_stream_id) {
+ buffer()->set_sctp_stream_id(sctp_stream_id);
+ }
// Comparison operator to support sorting.
bool operator<(const SpdyIOBuffer& other) const {

Powered by Google App Engine
This is Rietveld 408576698