| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h
|
| index cd19abeb8545e2028453a6872679554dc8678693..da44223b825c3b53568d5bcdc114d87970b017ac 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h
|
| @@ -21,6 +21,7 @@
|
| #include "base/time/time.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_stats.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.h"
|
| +#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_delegate.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_request_options.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_service.h"
|
| @@ -207,6 +208,11 @@ class TestDataReductionProxyIOData : public DataReductionProxyIOData {
|
| return config_client_.get();
|
| }
|
|
|
| + void set_proxy_delegate(
|
| + std::unique_ptr<DataReductionProxyDelegate> proxy_delegate) {
|
| + proxy_delegate_ = std::move(proxy_delegate);
|
| + }
|
| +
|
| void SetSimpleURLRequestContextGetter(
|
| const scoped_refptr<net::URLRequestContextGetter> context_getter) {
|
| basic_url_request_context_getter_ = context_getter;
|
|
|