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

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

Issue 7251004: Deciding best connection to schedule requests on based on cwnd and idle time (Reopened after revert) (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Syncing to head Created 9 years, 5 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_SPDY_HTTP_STREAM_H_ 5 #ifndef NET_SPDY_SPDY_HTTP_STREAM_H_
6 #define NET_SPDY_SPDY_HTTP_STREAM_H_ 6 #define NET_SPDY_SPDY_HTTP_STREAM_H_
7 #pragma once 7 #pragma once
8 8
9 #include <list> 9 #include <list>
10 #include <string> 10 #include <string>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual bool IsResponseBodyComplete() const OVERRIDE; 61 virtual bool IsResponseBodyComplete() const OVERRIDE;
62 virtual bool CanFindEndOfResponse() const OVERRIDE; 62 virtual bool CanFindEndOfResponse() const OVERRIDE;
63 virtual bool IsMoreDataBuffered() const OVERRIDE; 63 virtual bool IsMoreDataBuffered() const OVERRIDE;
64 virtual bool IsConnectionReused() const OVERRIDE; 64 virtual bool IsConnectionReused() const OVERRIDE;
65 virtual void SetConnectionReused() OVERRIDE; 65 virtual void SetConnectionReused() OVERRIDE;
66 virtual bool IsConnectionReusable() const OVERRIDE; 66 virtual bool IsConnectionReusable() const OVERRIDE;
67 virtual void GetSSLInfo(SSLInfo* ssl_info) OVERRIDE; 67 virtual void GetSSLInfo(SSLInfo* ssl_info) OVERRIDE;
68 virtual void GetSSLCertRequestInfo( 68 virtual void GetSSLCertRequestInfo(
69 SSLCertRequestInfo* cert_request_info) OVERRIDE; 69 SSLCertRequestInfo* cert_request_info) OVERRIDE;
70 virtual bool IsSpdyHttpStream() const OVERRIDE; 70 virtual bool IsSpdyHttpStream() const OVERRIDE;
71 virtual void LogNumRttVsBytesMetrics() const OVERRIDE {}
71 72
72 // SpdyStream::Delegate methods: 73 // SpdyStream::Delegate methods:
73 virtual bool OnSendHeadersComplete(int status) OVERRIDE; 74 virtual bool OnSendHeadersComplete(int status) OVERRIDE;
74 virtual int OnSendBody() OVERRIDE; 75 virtual int OnSendBody() OVERRIDE;
75 virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE; 76 virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE;
76 virtual int OnResponseReceived(const spdy::SpdyHeaderBlock& response, 77 virtual int OnResponseReceived(const spdy::SpdyHeaderBlock& response,
77 base::Time response_time, 78 base::Time response_time,
78 int status) OVERRIDE; 79 int status) OVERRIDE;
79 virtual void OnDataReceived(const char* buffer, int bytes) OVERRIDE; 80 virtual void OnDataReceived(const char* buffer, int bytes) OVERRIDE;
80 virtual void OnDataSent(int length) OVERRIDE; 81 virtual void OnDataSent(int length) OVERRIDE;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 bool direct_; 133 bool direct_;
133 134
134 bool send_last_chunk_; 135 bool send_last_chunk_;
135 136
136 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream); 137 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream);
137 }; 138 };
138 139
139 } // namespace net 140 } // namespace net
140 141
141 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_ 142 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698