OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 // QuicBandwidth represents a bandwidth, stored in bits per second resolution. | 5 // QuicBandwidth represents a bandwidth, stored in bits per second resolution. |
6 | 6 |
7 #ifndef NET_QUIC_QUIC_BANDWIDTH_H_ | 7 #ifndef NET_QUIC_QUIC_BANDWIDTH_H_ |
8 #define NET_QUIC_QUIC_BANDWIDTH_H_ | 8 #define NET_QUIC_QUIC_BANDWIDTH_H_ |
9 | 9 |
10 #include <stdint.h> | 10 #include <stdint.h> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "net/quic/quic_time.h" | 13 #include "net/quic/core/quic_time.h" |
14 | 14 |
15 namespace net { | 15 namespace net { |
16 | 16 |
17 typedef uint64_t QuicByteCount; | 17 typedef uint64_t QuicByteCount; |
18 typedef uint64_t QuicPacketCount; | 18 typedef uint64_t QuicPacketCount; |
19 | 19 |
20 class NET_EXPORT_PRIVATE QuicBandwidth { | 20 class NET_EXPORT_PRIVATE QuicBandwidth { |
21 public: | 21 public: |
22 // Creates a new QuicBandwidth with an internal value of 0. | 22 // Creates a new QuicBandwidth with an internal value of 0. |
23 static QuicBandwidth Zero(); | 23 static QuicBandwidth Zero(); |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 } | 92 } |
93 inline QuicBandwidth operator*(QuicBandwidth lhs, float rhs) { | 93 inline QuicBandwidth operator*(QuicBandwidth lhs, float rhs) { |
94 return QuicBandwidth(static_cast<int64_t>(lhs.bits_per_second_ * rhs)); | 94 return QuicBandwidth(static_cast<int64_t>(lhs.bits_per_second_ * rhs)); |
95 } | 95 } |
96 inline QuicBandwidth operator*(float lhs, QuicBandwidth rhs) { | 96 inline QuicBandwidth operator*(float lhs, QuicBandwidth rhs) { |
97 return rhs * lhs; | 97 return rhs * lhs; |
98 } | 98 } |
99 | 99 |
100 } // namespace net | 100 } // namespace net |
101 #endif // NET_QUIC_QUIC_BANDWIDTH_H_ | 101 #endif // NET_QUIC_QUIC_BANDWIDTH_H_ |
OLD | NEW |