Index: chrome/browser/policy/configuration_policy_pref_store_unittest.cc |
diff --git a/chrome/browser/policy/configuration_policy_pref_store_unittest.cc b/chrome/browser/policy/configuration_policy_pref_store_unittest.cc |
index a801f83effc639c706558ab7633b59fb2038b76b..76d7ba7ce2d85e2f31949778e177b5cf1077db58 100644 |
--- a/chrome/browser/policy/configuration_policy_pref_store_unittest.cc |
+++ b/chrome/browser/policy/configuration_policy_pref_store_unittest.cc |
@@ -116,6 +116,15 @@ INSTANTIATE_TEST_CASE_P( |
PolicyAndPref(key::kURLWhitelist, |
prefs::kUrlWhitelist))); |
+#if defined(OS_CHROMEOS) |
+INSTANTIATE_TEST_CASE_P( |
+ CrosConfigurationPolicyPrefStoreListTestInstance, |
+ ConfigurationPolicyPrefStoreListTest, |
+ testing::Values( |
+ PolicyAndPref(key::kAttestationExtensionWhitelist, |
+ prefs::kAttestationExtensionWhitelist))); |
+#endif // defined(OS_CHROMEOS) |
+ |
// Test cases for string-valued policy settings. |
class ConfigurationPolicyPrefStoreStringTest |
: public ConfigurationPolicyPrefStoreTest, |
@@ -308,7 +317,9 @@ INSTANTIATE_TEST_CASE_P( |
PolicyAndPref(key::kAudioOutputAllowed, |
prefs::kAudioOutputAllowed), |
PolicyAndPref(key::kAudioCaptureAllowed, |
- prefs::kAudioCaptureAllowed))); |
+ prefs::kAudioCaptureAllowed), |
+ PolicyAndPref(key::kAttestationEnabledForUser, |
+ prefs::kAttestationEnabled))); |
#endif // defined(OS_CHROMEOS) |
// Test cases for integer-valued policy settings. |