Index: webrtc/api/peerconnection.cc |
diff --git a/webrtc/api/peerconnection.cc b/webrtc/api/peerconnection.cc |
index 58174f08c11bbd10d36e58c3420a3d06ff8b909e..36843430d0ec9a3e0228e08627215008e434c559 100644 |
--- a/webrtc/api/peerconnection.cc |
+++ b/webrtc/api/peerconnection.cc |
@@ -40,7 +40,6 @@ |
#include "webrtc/logging/rtc_event_log/rtc_event_log.h" |
#include "webrtc/media/sctp/sctpdataengine.h" |
#include "webrtc/pc/channelmanager.h" |
-#include "webrtc/system_wrappers/include/clock.h" |
#include "webrtc/system_wrappers/include/field_trial.h" |
namespace { |
@@ -590,7 +589,7 @@ PeerConnection::PeerConnection(PeerConnectionFactory* factory) |
signaling_state_(kStable), |
ice_connection_state_(kIceConnectionNew), |
ice_gathering_state_(kIceGatheringNew), |
- event_log_(RtcEventLog::Create(webrtc::Clock::GetRealTimeClock())), |
+ event_log_(RtcEventLog::Create()), |
rtcp_cname_(GenerateRtcpCname()), |
local_streams_(StreamCollection::Create()), |
remote_streams_(StreamCollection::Create()) {} |