| Index: chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc
|
| diff --git a/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc b/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc
|
| index c740f9aff78dfa338653365b968d1506dbee02b9..5520de6ec29d14b26329074944ed2571a00443e5 100644
|
| --- a/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc
|
| +++ b/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc
|
| @@ -163,7 +163,8 @@ TEST_F(SubresourceFilterComponentInstallerTest,
|
| base::FieldTrialList field_trial_list(nullptr);
|
| subresource_filter::testing::ScopedSubresourceFilterFeatureToggle
|
| scoped_feature_toggle(base::FeatureList::OVERRIDE_DISABLE_FEATURE,
|
| - subresource_filter::kActivationStateEnabled);
|
| + subresource_filter::kActivationStateEnabled,
|
| + subresource_filter::kActivationScopeNoSites);
|
| std::unique_ptr<SubresourceFilterMockComponentUpdateService>
|
| component_updater(new SubresourceFilterMockComponentUpdateService());
|
| EXPECT_CALL(*component_updater, RegisterComponent(testing::_)).Times(0);
|
| @@ -176,7 +177,8 @@ TEST_F(SubresourceFilterComponentInstallerTest,
|
| base::FieldTrialList field_trial_list(nullptr);
|
| subresource_filter::testing::ScopedSubresourceFilterFeatureToggle
|
| scoped_feature_toggle(base::FeatureList::OVERRIDE_ENABLE_FEATURE,
|
| - subresource_filter::kActivationStateDisabled);
|
| + subresource_filter::kActivationStateDisabled,
|
| + subresource_filter::kActivationScopeNoSites);
|
| std::unique_ptr<SubresourceFilterMockComponentUpdateService>
|
| component_updater(new SubresourceFilterMockComponentUpdateService());
|
| EXPECT_CALL(*component_updater, RegisterComponent(testing::_)).Times(1);
|
|
|