| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 kPolicyExtensionInstallAllowList, | 287 kPolicyExtensionInstallAllowList, |
| 288 key::kExtensionInstallAllowList), | 288 key::kExtensionInstallAllowList), |
| 289 PolicyTestParams::ForListPolicy( | 289 PolicyTestParams::ForListPolicy( |
| 290 kPolicyExtensionInstallDenyList, | 290 kPolicyExtensionInstallDenyList, |
| 291 key::kExtensionInstallDenyList), | 291 key::kExtensionInstallDenyList), |
| 292 PolicyTestParams::ForBooleanPolicy( | 292 PolicyTestParams::ForBooleanPolicy( |
| 293 kPolicyShowHomeButton, | 293 kPolicyShowHomeButton, |
| 294 key::kShowHomeButton), | 294 key::kShowHomeButton), |
| 295 PolicyTestParams::ForBooleanPolicy( | 295 PolicyTestParams::ForBooleanPolicy( |
| 296 kPolicyPrintingEnabled, | 296 kPolicyPrintingEnabled, |
| 297 key::kPrintingEnabled))); | 297 key::kPrintingEnabled), |
| 298 PolicyTestParams::ForIntegerPolicy( |
| 299 kPolicyPolicyRefreshRate, |
| 300 key::kPolicyRefreshRate))); |
| 298 | 301 |
| 299 } // namespace policy | 302 } // namespace policy |
| OLD | NEW |