| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 kPolicyExtensionInstallAllowList, | 442 kPolicyExtensionInstallAllowList, |
| 443 key::kExtensionInstallAllowList), | 443 key::kExtensionInstallAllowList), |
| 444 PolicyTestParams::ForListPolicy( | 444 PolicyTestParams::ForListPolicy( |
| 445 kPolicyExtensionInstallDenyList, | 445 kPolicyExtensionInstallDenyList, |
| 446 key::kExtensionInstallDenyList), | 446 key::kExtensionInstallDenyList), |
| 447 PolicyTestParams::ForBooleanPolicy( | 447 PolicyTestParams::ForBooleanPolicy( |
| 448 kPolicyShowHomeButton, | 448 kPolicyShowHomeButton, |
| 449 key::kShowHomeButton), | 449 key::kShowHomeButton), |
| 450 PolicyTestParams::ForBooleanPolicy( | 450 PolicyTestParams::ForBooleanPolicy( |
| 451 kPolicyPrintingEnabled, | 451 kPolicyPrintingEnabled, |
| 452 key::kPrintingEnabled))); | 452 key::kPrintingEnabled), |
| 453 PolicyTestParams::ForIntegerPolicy( |
| 454 kPolicyPolicyRefreshRate, |
| 455 key::kPolicyRefreshRate))); |
| 453 | 456 |
| 454 } // namespace policy | 457 } // namespace policy |
| OLD | NEW |