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 b24f239ceb011b9ed208b3a62e6badd1bb0a65a9..cdfa225ab7b297ddd00a4df24e1bb7df471445c5 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 |
@@ -162,6 +162,11 @@ class DataReductionProxySettingsTestBase : public testing::Test { |
scoped_ptr<DataReductionProxySettings> settings_; |
scoped_ptr<TestDataReductionProxyParams> expected_params_; |
base::Time last_update_time_; |
+ |
+ bool proxy_enabled_; |
+ void RegisterSyntheticFieldTrialCallback(bool proxy_enabled) { |
Alexei Svitkine (slow)
2014/07/30 17:27:04
Functions should come before variables.
megjablon
2014/07/30 18:50:48
Done.
|
+ proxy_enabled_ = proxy_enabled; |
+ } |
}; |
// Test implementations should be subclasses of an instantiation of this |