| Index: webrtc/video/video_quality_test.cc
 | 
| diff --git a/webrtc/video/video_quality_test.cc b/webrtc/video/video_quality_test.cc
 | 
| index 9adcc162062701fed9263fb06d368aa6f289b69c..dabe50067697b11dd0901d0d2a47113341bcf65b 100644
 | 
| --- a/webrtc/video/video_quality_test.cc
 | 
| +++ b/webrtc/video/video_quality_test.cc
 | 
| @@ -25,6 +25,7 @@
 | 
|  #include "webrtc/base/timeutils.h"
 | 
|  #include "webrtc/call.h"
 | 
|  #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
 | 
| +#include "webrtc/logging/rtc_event_log/rtc_event_log.h"
 | 
|  #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h"
 | 
|  #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
 | 
|  #include "webrtc/system_wrappers/include/cpu_info.h"
 | 
| @@ -1151,7 +1152,8 @@ void VideoQualityTest::RunWithAnalyzer(const Params& params) {
 | 
|          << "!";
 | 
|    }
 | 
|  
 | 
| -  Call::Config call_config;
 | 
| +  webrtc::RtcEventLogNullImpl event_log;
 | 
| +  Call::Config call_config(&event_log_);
 | 
|    call_config.bitrate_config = params.common.call_bitrate_config;
 | 
|    CreateCalls(call_config, call_config);
 | 
|  
 | 
| @@ -1261,7 +1263,8 @@ void VideoQualityTest::RunWithRenderers(const Params& params) {
 | 
|  
 | 
|    // TODO(ivica): Remove bitrate_config and use the default Call::Config(), to
 | 
|    // match the full stack tests.
 | 
| -  Call::Config call_config;
 | 
| +  webrtc::RtcEventLogNullImpl event_log;
 | 
| +  Call::Config call_config(&event_log_);
 | 
|    call_config.bitrate_config = params_.common.call_bitrate_config;
 | 
|  
 | 
|    ::VoiceEngineState voe;
 | 
| 
 |