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

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

Issue 6990036: Deciding best connection to schedule requests on based on cwnd and idle time (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: syncing head and addressing comments Created 9 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
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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 71
72 // Do nothing.
willchan no longer on Chromium 2011/06/13 15:06:07 Remove this comment and move it above. It should b
Gagan 2011/06/13 16:45:58 Done.
73 virtual void LogNumRttVsBytesMetrics() const OVERRIDE {}
74
72 // SpdyStream::Delegate methods: 75 // SpdyStream::Delegate methods:
73 virtual bool OnSendHeadersComplete(int status) OVERRIDE; 76 virtual bool OnSendHeadersComplete(int status) OVERRIDE;
74 virtual int OnSendBody() OVERRIDE; 77 virtual int OnSendBody() OVERRIDE;
75 virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE; 78 virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE;
76 virtual int OnResponseReceived(const spdy::SpdyHeaderBlock& response, 79 virtual int OnResponseReceived(const spdy::SpdyHeaderBlock& response,
77 base::Time response_time, 80 base::Time response_time,
78 int status) OVERRIDE; 81 int status) OVERRIDE;
79 virtual void OnDataReceived(const char* buffer, int bytes) OVERRIDE; 82 virtual void OnDataReceived(const char* buffer, int bytes) OVERRIDE;
80 virtual void OnDataSent(int length) OVERRIDE; 83 virtual void OnDataSent(int length) OVERRIDE;
81 virtual void OnClose(int status) OVERRIDE; 84 virtual void OnClose(int status) OVERRIDE;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 bool direct_; 135 bool direct_;
133 136
134 bool send_last_chunk_; 137 bool send_last_chunk_;
135 138
136 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream); 139 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream);
137 }; 140 };
138 141
139 } // namespace net 142 } // namespace net
140 143
141 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_ 144 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698