| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 90 | 90 | 
| 91   std::vector<std::unique_ptr<Controller>> controllers_; | 91   std::vector<std::unique_ptr<Controller>> controllers_; | 
| 92 | 92 | 
| 93   rtc::Optional<int64_t> last_reordering_time_ms_; | 93   rtc::Optional<int64_t> last_reordering_time_ms_; | 
| 94   ScoringPoint last_scoring_point_; | 94   ScoringPoint last_scoring_point_; | 
| 95 | 95 | 
| 96   std::vector<Controller*> default_sorted_controllers_; | 96   std::vector<Controller*> default_sorted_controllers_; | 
| 97 | 97 | 
| 98   std::vector<Controller*> sorted_controllers_; | 98   std::vector<Controller*> sorted_controllers_; | 
| 99 | 99 | 
| 100   // |scoring_points_| saves the characteristic scoring points of various | 100   // |scoring_points_| saves the scoring points of various | 
| 101   // controllers. | 101   // controllers. | 
| 102   std::map<const Controller*, ScoringPoint> controller_scoring_points_; | 102   std::map<const Controller*, ScoringPoint> controller_scoring_points_; | 
| 103 | 103 | 
| 104   RTC_DISALLOW_COPY_AND_ASSIGN(ControllerManagerImpl); | 104   RTC_DISALLOW_COPY_AND_ASSIGN(ControllerManagerImpl); | 
| 105 }; | 105 }; | 
| 106 | 106 | 
| 107 }  // namespace webrtc | 107 }  // namespace webrtc | 
| 108 | 108 | 
| 109 #endif  // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_MANAGER_
     H_ | 109 #endif  // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_MANAGER_
     H_ | 
| OLD | NEW | 
|---|