| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_NQE_NETWORK_QUALITY_H_ | 5 #ifndef NET_NQE_NETWORK_QUALITY_H_ |
| 6 #define NET_NQE_NETWORK_QUALITY_H_ | 6 #define NET_NQE_NETWORK_QUALITY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 base::TimeDelta transport_rtt_; | 89 base::TimeDelta transport_rtt_; |
| 90 | 90 |
| 91 // Estimated downstream throughput in kilobits per second. | 91 // Estimated downstream throughput in kilobits per second. |
| 92 int32_t downstream_throughput_kbps_; | 92 int32_t downstream_throughput_kbps_; |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 } // namespace internal | 95 } // namespace internal |
| 96 } // namespace nqe | 96 } // namespace nqe |
| 97 } // namespace net | 97 } // namespace net |
| 98 | 98 |
| 99 #endif // NET_NQE_NETWORK_QUALITY_H_ | 99 #endif // NET_NQE_NETWORK_QUALITY_H_ |
| OLD | NEW |