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

Side by Side Diff: net/quic/quic_stats.cc

Issue 12806002: Land Recent QUIC Changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor comment fix Created 7 years, 9 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 | « net/quic/quic_stats.h ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "net/quic/quic_stats.h"
6
7 namespace net {
8
9 QuicConnectionStats::QuicConnectionStats() {
10 bytes_sent = 0;
11 packets_sent = 0;
12
13 bytes_received = 0;
14 packets_received = 0;
15
16 bytes_retransmitted = 0;
17 packets_retransmitted = 0;
18
19 packets_revived = 0;
20 packets_dropped = 0;
21 rto_count = 0;
22
23 rtt = 0;
24 estimated_bandwidth = 0;
25 }
26
27 QuicConnectionStats::~QuicConnectionStats() {}
28
29 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_stats.h ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698