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

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: Added a unittest in codec_test.cc, to test the integration in VoE. 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..1eae150ee0681ebcdacbde7277997cd192ad0361 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;
@@ -170,8 +171,12 @@ public:
static int32_t CreateChannel(Channel*& channel,
int32_t channelId,
uint32_t instanceId,
+ RtcEventLog* const event_log,
const Config& config);
- Channel(int32_t channelId, uint32_t instanceId, const Config& config);
+ Channel(int32_t channelId,
+ uint32_t instanceId,
+ RtcEventLog* const event_log,
+ const Config& config);
int32_t Init();
int32_t SetEngineInformation(
Statistics& engineStatistics,

Powered by Google App Engine
This is Rietveld 408576698