| Index: webrtc/voice_engine/shared_data.h
|
| diff --git a/webrtc/voice_engine/shared_data.h b/webrtc/voice_engine/shared_data.h
|
| index 3ab1d45ac54884f3a02bb8740c4e844fecb42d2d..b2da1ddff532b1c2e4c6cb7c328679a01e6e0dbc 100644
|
| --- a/webrtc/voice_engine/shared_data.h
|
| +++ b/webrtc/voice_engine/shared_data.h
|
| @@ -24,6 +24,7 @@ class ProcessThread;
|
| namespace webrtc {
|
| class Config;
|
| class CriticalSectionWrapper;
|
| +class RtcEventLog;
|
|
|
| namespace voe {
|
|
|
| @@ -55,6 +56,7 @@ public:
|
| void set_audio_device_layer(AudioDeviceModule::AudioLayer layer) {
|
| _audioDeviceLayer = layer;
|
| }
|
| + RtcEventLog* event_log() { return _eventLog.get(); }
|
|
|
| int NumOfSendingChannels();
|
| int NumOfPlayingChannels();
|
| @@ -68,6 +70,7 @@ public:
|
| protected:
|
| const uint32_t _instanceId;
|
| CriticalSectionWrapper* _apiCritPtr;
|
| + rtc::scoped_ptr<RtcEventLog> _eventLog;
|
| ChannelManager _channelManager;
|
| Statistics _engineStatistics;
|
| AudioDeviceModule* _audioDevicePtr;
|
|
|