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

Side by Side Diff: net/quic/core/quic_bandwidth.h

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 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
« no previous file with comments | « net/quic/core/quic_arena_scoped_ptr_test.cc ('k') | net/quic/core/quic_bandwidth.cc » ('j') | 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) 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
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_
OLDNEW
« no previous file with comments | « net/quic/core/quic_arena_scoped_ptr_test.cc ('k') | net/quic/core/quic_bandwidth.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698