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

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

Issue 3199013: Missed a file from last checkin. histograms_recorded member variable is... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 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 | no next file » | 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) 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
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698