Index: webrtc/voice_engine/channel_manager.h |
diff --git a/webrtc/voice_engine/channel_manager.h b/webrtc/voice_engine/channel_manager.h |
index 77dfc454d882f0ecece0859c657331c3720bb1a8..ac045d15f62b560eb3678a33c81ec8c8a0588526 100644 |
--- a/webrtc/voice_engine/channel_manager.h |
+++ b/webrtc/voice_engine/channel_manager.h |
@@ -16,7 +16,6 @@ |
#include "webrtc/base/constructormagic.h" |
#include "webrtc/base/criticalsection.h" |
-#include "webrtc/call/rtc_event_log.h" |
#include "webrtc/system_wrappers/include/atomic32.h" |
#include "webrtc/typedefs.h" |
@@ -112,9 +111,6 @@ class ChannelManager { |
size_t NumOfChannels() const; |
- // Returns a pointer to the event log object stored within the ChannelManager. |
- RtcEventLog* GetEventLog() const; |
- |
private: |
// Create a channel given a configuration, |config|. |
ChannelOwner CreateChannelInternal(const Config& config); |
@@ -127,7 +123,6 @@ class ChannelManager { |
std::vector<ChannelOwner> channels_; |
const Config& config_; |
- std::unique_ptr<RtcEventLog> event_log_; |
RTC_DISALLOW_COPY_AND_ASSIGN(ChannelManager); |
}; |