| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 bool enable_periodic_alr_probing_ GUARDED_BY(critsect_); | 78 bool enable_periodic_alr_probing_ GUARDED_BY(critsect_); |
| 79 int64_t time_of_last_large_drop_ms_ GUARDED_BY(critsect_); | 79 int64_t time_of_last_large_drop_ms_ GUARDED_BY(critsect_); |
| 80 int64_t bitrate_before_last_large_drop_bps_ GUARDED_BY(critsect_); | 80 int64_t bitrate_before_last_large_drop_bps_ GUARDED_BY(critsect_); |
| 81 | 81 |
| 82 bool in_rapid_recovery_experiment_ GUARDED_BY(critsect_); | 82 bool in_rapid_recovery_experiment_ GUARDED_BY(critsect_); |
| 83 // For WebRTC.BWE.MidCallProbing.* metric. | 83 // For WebRTC.BWE.MidCallProbing.* metric. |
| 84 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_); | 84 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_); |
| 85 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_); | 85 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_); |
| 86 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_); | 86 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_); |
| 87 | 87 |
| 88 bool in_alr = false; |
| 89 |
| 88 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); | 90 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); |
| 89 }; | 91 }; |
| 90 | 92 |
| 91 } // namespace webrtc | 93 } // namespace webrtc |
| 92 | 94 |
| 93 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ | 95 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ |
| OLD | NEW |