OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <gtest/gtest.h> | 5 #include <gtest/gtest.h> |
6 | 6 |
7 #include "base/mac/scoped_cftyperef.h" | 7 #include "base/mac/scoped_cftyperef.h" |
8 #include "base/stl_util-inl.h" | 8 #include "base/stl_util-inl.h" |
9 #include "base/sys_string_conversions.h" | 9 #include "base/sys_string_conversions.h" |
10 #include "chrome/browser/policy/configuration_policy_pref_store.h" | 10 #include "chrome/browser/policy/configuration_policy_pref_store.h" |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 kPolicyExtensionInstallAllowList, | 281 kPolicyExtensionInstallAllowList, |
282 key::kExtensionInstallAllowList), | 282 key::kExtensionInstallAllowList), |
283 PolicyTestParams::ForListPolicy( | 283 PolicyTestParams::ForListPolicy( |
284 kPolicyExtensionInstallDenyList, | 284 kPolicyExtensionInstallDenyList, |
285 key::kExtensionInstallDenyList), | 285 key::kExtensionInstallDenyList), |
286 PolicyTestParams::ForBooleanPolicy( | 286 PolicyTestParams::ForBooleanPolicy( |
287 kPolicyShowHomeButton, | 287 kPolicyShowHomeButton, |
288 key::kShowHomeButton), | 288 key::kShowHomeButton), |
289 PolicyTestParams::ForBooleanPolicy( | 289 PolicyTestParams::ForBooleanPolicy( |
290 kPolicyPrintingEnabled, | 290 kPolicyPrintingEnabled, |
291 key::kPrintingEnabled))); | 291 key::kPrintingEnabled), |
| 292 PolicyTestParams::ForIntegerPolicy( |
| 293 kPolicyPolicyRefreshRate, |
| 294 key::kPolicyRefreshRate))); |
292 | 295 |
293 } // namespace policy | 296 } // namespace policy |
OLD | NEW |