| Index: chrome/browser/subresource_filter/subresource_filter_browsertest.cc
 | 
| diff --git a/chrome/browser/subresource_filter/subresource_filter_browsertest.cc b/chrome/browser/subresource_filter/subresource_filter_browsertest.cc
 | 
| index e115e7a2bf3f09d5c1aba52b1366a4b4363959fa..0d3ea6570cf2f40d415e82ca1dbb6957d9dbde31 100644
 | 
| --- a/chrome/browser/subresource_filter/subresource_filter_browsertest.cc
 | 
| +++ b/chrome/browser/subresource_filter/subresource_filter_browsertest.cc
 | 
| @@ -378,12 +378,11 @@ class SubresourceFilterBrowserTest : public InProcessBrowserTest {
 | 
|    void ResetConfigurationToEnableOnPhishingSites(
 | 
|        bool measure_performance = false,
 | 
|        bool whitelist_site_on_reload = false) {
 | 
| -    Configuration config(
 | 
| -        subresource_filter::ActivationLevel::ENABLED,
 | 
| -        subresource_filter::ActivationScope::ACTIVATION_LIST,
 | 
| -        subresource_filter::ActivationList::PHISHING_INTERSTITIAL);
 | 
| -    config.performance_measurement_rate = measure_performance ? 1.0 : 0.0;
 | 
| -    config.should_whitelist_site_on_reload = whitelist_site_on_reload;
 | 
| +    Configuration config = Configuration::MakePresetForLiveRunOnPhishingSites();
 | 
| +    config.activation_options.performance_measurement_rate =
 | 
| +        measure_performance ? 1.0 : 0.0;
 | 
| +    config.activation_options.should_whitelist_site_on_reload =
 | 
| +        whitelist_site_on_reload;
 | 
|      ResetConfiguration(std::move(config));
 | 
|    }
 | 
|  
 | 
| 
 |