| Index: components/data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h
|
| diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h b/components/data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h
|
| index e01d0cf330fad4dbec4880e3dcc54edbe2e9f153..b24f239ceb011b9ed208b3a62e6badd1bb0a65a9 100644
|
| --- a/components/data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h
|
| +++ b/components/data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h
|
| @@ -116,11 +116,13 @@ class DataReductionProxySettingsTestBase : public testing::Test {
|
| template <class C> void ResetSettings(bool allowed,
|
| bool fallback_allowed,
|
| bool alt_allowed,
|
| - bool promo_allowed);
|
| + bool promo_allowed,
|
| + bool holdback);
|
| virtual void ResetSettings(bool allowed,
|
| bool fallback_allowed,
|
| bool alt_allowed,
|
| - bool promo_allowed) = 0;
|
| + bool promo_allowed,
|
| + bool holdback) = 0;
|
|
|
| template <class C> void SetProbeResult(
|
| const std::string& test_url,
|
| @@ -173,9 +175,10 @@ class ConcreteDataReductionProxySettingsTest
|
| virtual void ResetSettings(bool allowed,
|
| bool fallback_allowed,
|
| bool alt_allowed,
|
| - bool promo_allowed) OVERRIDE {
|
| + bool promo_allowed,
|
| + bool holdback) OVERRIDE {
|
| return DataReductionProxySettingsTestBase::ResetSettings<C>(
|
| - allowed, fallback_allowed, alt_allowed, promo_allowed);
|
| + allowed, fallback_allowed, alt_allowed, promo_allowed, holdback);
|
| }
|
|
|
| virtual void SetProbeResult(const std::string& test_url,
|
|
|