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

Unified Diff: talk/media/webrtc/fakewebrtcvoiceengine.h

Issue 1413483003: Added option to specify a maximum file size when recording an AEC dump. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Initial version Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: talk/media/webrtc/fakewebrtcvoiceengine.h
diff --git a/talk/media/webrtc/fakewebrtcvoiceengine.h b/talk/media/webrtc/fakewebrtcvoiceengine.h
index 1167b6b9830c2f9edd1ff0b9caa606a50814d372..0244b287526704d18f6f56e2448468bd726d5ef2 100644
--- a/talk/media/webrtc/fakewebrtcvoiceengine.h
+++ b/talk/media/webrtc/fakewebrtcvoiceengine.h
@@ -157,7 +157,10 @@ class FakeAudioProcessing : public webrtc::AudioProcessing {
WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset));
WEBRTC_STUB_CONST(delay_offset_ms, ());
WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize]));
+ WEBRTC_STUB(StartDebugRecording,
+ (const char filename[kMaxFilenameSize], int max_log_size_bytes));
WEBRTC_STUB(StartDebugRecording, (FILE* handle));
+ WEBRTC_STUB(StartDebugRecording, (FILE * handle, int max_log_size_bytes));
WEBRTC_STUB(StopDebugRecording, ());
WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ());
webrtc::EchoCancellation* echo_cancellation() const override { return NULL; }
@@ -1004,7 +1007,10 @@ class FakeWebRtcVoiceEngine
float& fraction_poor_delays));
WEBRTC_STUB(StartDebugRecording, (const char* fileNameUTF8));
+ WEBRTC_STUB(StartDebugRecording,
+ (const char* fileNameUTF8, int max_size_bytes));
WEBRTC_STUB(StartDebugRecording, (FILE* handle));
+ WEBRTC_STUB(StartDebugRecording, (FILE * handle, int max_size_bytes));
WEBRTC_STUB(StopDebugRecording, ());
WEBRTC_FUNC(SetTypingDetectionStatus, (bool enable)) {

Powered by Google App Engine
This is Rietveld 408576698