Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(495)

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h

Issue 388663002: Added data reduction proxy holdback experiment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698