| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BASE_NETWORK_QUALITY_ESTIMATOR_H_ | 5 #ifndef NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ |
| 6 #define NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ | 6 #define NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 8 #include <stdint.h> | 9 #include <stdint.h> |
| 9 | 10 |
| 10 #include <deque> | 11 #include <deque> |
| 11 #include <map> | 12 #include <map> |
| 12 #include <string> | 13 #include <string> |
| 13 #include <tuple> | 14 #include <tuple> |
| 14 | 15 |
| 15 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
| 16 #include "base/macros.h" | 17 #include "base/macros.h" |
| 17 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| (...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 base::ObserverList<ThroughputObserver> throughput_observer_list_; | 567 base::ObserverList<ThroughputObserver> throughput_observer_list_; |
| 567 | 568 |
| 568 base::ThreadChecker thread_checker_; | 569 base::ThreadChecker thread_checker_; |
| 569 | 570 |
| 570 DISALLOW_COPY_AND_ASSIGN(NetworkQualityEstimator); | 571 DISALLOW_COPY_AND_ASSIGN(NetworkQualityEstimator); |
| 571 }; | 572 }; |
| 572 | 573 |
| 573 } // namespace net | 574 } // namespace net |
| 574 | 575 |
| 575 #endif // NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ | 576 #endif // NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ |
| OLD | NEW |