| Index: webrtc/video/video_quality_test.cc
 | 
| diff --git a/webrtc/video/video_quality_test.cc b/webrtc/video/video_quality_test.cc
 | 
| index 3fa07db7fdbcc3f5a3ce60193b019daeb5229ddf..36c35ee7253f6f7c89725c12799bd802a9ab8c43 100644
 | 
| --- a/webrtc/video/video_quality_test.cc
 | 
| +++ b/webrtc/video/video_quality_test.cc
 | 
| @@ -1584,8 +1584,7 @@ void VideoQualityTest::RunWithAnalyzer(const Params& params) {
 | 
|          << "!";
 | 
|    }
 | 
|  
 | 
| -  webrtc::RtcEventLogNullImpl event_log;
 | 
| -  Call::Config call_config(&event_log_);
 | 
| +  Call::Config call_config(event_log_.get());
 | 
|    call_config.bitrate_config = params.call.call_bitrate_config;
 | 
|    CreateCalls(call_config, call_config);
 | 
|  
 | 
| @@ -1736,8 +1735,7 @@ void VideoQualityTest::RunWithRenderers(const Params& params) {
 | 
|  
 | 
|    // TODO(ivica): Remove bitrate_config and use the default Call::Config(), to
 | 
|    // match the full stack tests.
 | 
| -  webrtc::RtcEventLogNullImpl event_log;
 | 
| -  Call::Config call_config(&event_log_);
 | 
| +  Call::Config call_config(event_log_.get());
 | 
|    call_config.bitrate_config = params_.call.call_bitrate_config;
 | 
|  
 | 
|    ::VoiceEngineState voe;
 | 
| 
 |