| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc
|
| index f71ce8d74877ca967efb6b919610fee201340913..71dec5335a19510435a065378882d731b148ac4d 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc
|
| @@ -340,17 +340,15 @@ DataReductionProxyTestContext::Builder::Build() {
|
| DataReductionProxyMutableConfigValues::CreateFromParams(params.get());
|
| raw_mutable_config = mutable_config.get();
|
| config.reset(new TestDataReductionProxyConfig(
|
| - mutable_config.Pass(), task_runner, net_log.get(), configurator.get(),
|
| + mutable_config.Pass(), net_log.get(), configurator.get(),
|
| event_creator.get()));
|
| } else if (use_mock_config_) {
|
| test_context_flags |= USE_MOCK_CONFIG;
|
| config.reset(new MockDataReductionProxyConfig(
|
| - params.Pass(), task_runner, net_log.get(), configurator.get(),
|
| - event_creator.get()));
|
| + params.Pass(), net_log.get(), configurator.get(), event_creator.get()));
|
| } else {
|
| config.reset(new TestDataReductionProxyConfig(
|
| - params.Pass(), task_runner, net_log.get(), configurator.get(),
|
| - event_creator.get()));
|
| + params.Pass(), net_log.get(), configurator.get(), event_creator.get()));
|
| }
|
|
|
| scoped_ptr<DataReductionProxyRequestOptions> request_options;
|
|
|