| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_STREAM_H_ | 5 #ifndef NET_SPDY_SPDY_STREAM_H_ |
| 6 #define NET_SPDY_SPDY_STREAM_H_ | 6 #define NET_SPDY_SPDY_STREAM_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 bool cancelled_; | 258 bool cancelled_; |
| 259 bool has_upload_data_; | 259 bool has_upload_data_; |
| 260 | 260 |
| 261 BoundNetLog net_log_; | 261 BoundNetLog net_log_; |
| 262 | 262 |
| 263 base::TimeTicks send_time_; | 263 base::TimeTicks send_time_; |
| 264 base::TimeTicks recv_first_byte_time_; | 264 base::TimeTicks recv_first_byte_time_; |
| 265 base::TimeTicks recv_last_byte_time_; | 265 base::TimeTicks recv_last_byte_time_; |
| 266 int send_bytes_; | 266 int send_bytes_; |
| 267 int recv_bytes_; | 267 int recv_bytes_; |
| 268 bool histograms_recorded_; | |
| 269 // Data received before delegate is attached. | 268 // Data received before delegate is attached. |
| 270 std::vector<scoped_refptr<IOBufferWithSize> > pending_buffers_; | 269 std::vector<scoped_refptr<IOBufferWithSize> > pending_buffers_; |
| 271 | 270 |
| 272 DISALLOW_COPY_AND_ASSIGN(SpdyStream); | 271 DISALLOW_COPY_AND_ASSIGN(SpdyStream); |
| 273 }; | 272 }; |
| 274 | 273 |
| 275 } // namespace net | 274 } // namespace net |
| 276 | 275 |
| 277 #endif // NET_SPDY_SPDY_STREAM_H_ | 276 #endif // NET_SPDY_SPDY_STREAM_H_ |
| OLD | NEW |