Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: webrtc/media/base/fakemediaengine.h

Issue 1974453002: Add a parameter to set a maximum filesize when starting an RTC event log on the PeerConnectionFacto… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed typo in JNI code. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/call/rtc_event_log.cc ('k') | webrtc/media/base/mediaengine.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « webrtc/call/rtc_event_log.cc ('k') | webrtc/media/base/mediaengine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698