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

Unified Diff: webrtc/voice_engine/channel.h

Issue 1267683002: Hooked up RtcEventLog. It lives in Voice Engine and pointers are propagated to ACM and Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased to latest revision of webrtc to resolve patching conflict on try bots. Created 5 years, 4 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: webrtc/voice_engine/channel.h
diff --git a/webrtc/voice_engine/channel.h b/webrtc/voice_engine/channel.h
index 398087eefb481a0cd96624b6b086c3d9c0acbe58..dfc6a52ad58aa9ca13a516387c102a46daca8251 100644
--- a/webrtc/voice_engine/channel.h
+++ b/webrtc/voice_engine/channel.h
@@ -51,6 +51,7 @@ class FileWrapper;
class ProcessThread;
class ReceiveStatistics;
class RemoteNtpTimeEstimator;
+class RtcEventLog;
class RTPPayloadRegistry;
class RtpReceiver;
class RTPReceiverAudio;
@@ -448,6 +449,10 @@ public:
// Disassociate a send channel if it was associated.
void DisassociateSendChannel(int channel_id);
+ // Set an RtcEventLog object to enable logging of debug events in the Audio
hlundin-webrtc 2015/08/04 09:14:47 Sets...
ivoc 2015/08/05 07:39:04 Done.
+ // Coding Module.
hlundin-webrtc 2015/08/04 09:14:47 Also, is nullptr a valid input value? Does that st
ivoc 2015/08/05 07:39:04 It is valid to set a nullptr to stop logging. Adde
+ void SetEventLog(RtcEventLog* event_log);
+
protected:
void OnIncomingFractionLoss(int fraction_lost);

Powered by Google App Engine
This is Rietveld 408576698