Chromium Code Reviews| 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 f91c87e3d1b1e35a1f13c90eaa3289b9e0e4696d..651f6284231a07e68ef1f5a67b5bf54bbde65208 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))); |
|
Mattias Nissler (ping if slow)
2013/04/17 08:09:09
This probably no longer passes when using the hand
davidyu
2013/04/17 08:24:19
Done.
|
| +#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. |