| 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 #include <windows.h> | 6 #include <windows.h> |
| 7 | 7 |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
| 10 #include "base/stl_util-inl.h" | 10 #include "base/stl_util-inl.h" |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 kPolicyExtensionInstallAllowList, | 436 kPolicyExtensionInstallAllowList, |
| 437 key::kExtensionInstallAllowList), | 437 key::kExtensionInstallAllowList), |
| 438 PolicyTestParams::ForListPolicy( | 438 PolicyTestParams::ForListPolicy( |
| 439 kPolicyExtensionInstallDenyList, | 439 kPolicyExtensionInstallDenyList, |
| 440 key::kExtensionInstallDenyList), | 440 key::kExtensionInstallDenyList), |
| 441 PolicyTestParams::ForBooleanPolicy( | 441 PolicyTestParams::ForBooleanPolicy( |
| 442 kPolicyShowHomeButton, | 442 kPolicyShowHomeButton, |
| 443 key::kShowHomeButton), | 443 key::kShowHomeButton), |
| 444 PolicyTestParams::ForBooleanPolicy( | 444 PolicyTestParams::ForBooleanPolicy( |
| 445 kPolicyPrintingEnabled, | 445 kPolicyPrintingEnabled, |
| 446 key::kPrintingEnabled))); | 446 key::kPrintingEnabled), |
| 447 PolicyTestParams::ForIntegerPolicy( |
| 448 kPolicyPolicyRefreshRate, |
| 449 key::kPolicyRefreshRate))); |
| 447 | 450 |
| 448 } // namespace policy | 451 } // namespace policy |
| OLD | NEW |