| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 } | 739 } |
| 740 | 740 |
| 741 int GetInputLevel() { return 0; } | 741 int GetInputLevel() { return 0; } |
| 742 | 742 |
| 743 bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) { | 743 bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) { |
| 744 return false; | 744 return false; |
| 745 } | 745 } |
| 746 | 746 |
| 747 void StopAecDump() {} | 747 void StopAecDump() {} |
| 748 | 748 |
| 749 bool StartRtcEventLog(rtc::PlatformFile file) { return false; } | 749 bool StartRtcEventLog(rtc::PlatformFile file, int64_t max_size_bytes) { |
| 750 return false; |
| 751 } |
| 750 | 752 |
| 751 void StopRtcEventLog() {} | 753 void StopRtcEventLog() {} |
| 752 | 754 |
| 753 private: | 755 private: |
| 754 std::vector<FakeVoiceMediaChannel*> channels_; | 756 std::vector<FakeVoiceMediaChannel*> channels_; |
| 755 std::vector<AudioCodec> codecs_; | 757 std::vector<AudioCodec> codecs_; |
| 756 int output_volume_; | 758 int output_volume_; |
| 757 | 759 |
| 758 friend class FakeMediaEngine; | 760 friend class FakeMediaEngine; |
| 759 }; | 761 }; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 | 909 |
| 908 private: | 910 private: |
| 909 std::vector<FakeDataMediaChannel*> channels_; | 911 std::vector<FakeDataMediaChannel*> channels_; |
| 910 std::vector<DataCodec> data_codecs_; | 912 std::vector<DataCodec> data_codecs_; |
| 911 DataChannelType last_channel_type_; | 913 DataChannelType last_channel_type_; |
| 912 }; | 914 }; |
| 913 | 915 |
| 914 } // namespace cricket | 916 } // namespace cricket |
| 915 | 917 |
| 916 #endif // WEBRTC_MEDIA_BASE_FAKEMEDIAENGINE_H_ | 918 #endif // WEBRTC_MEDIA_BASE_FAKEMEDIAENGINE_H_ |
| OLD | NEW |