| 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 | |
| 7 #include <windows.h> | 6 #include <windows.h> |
| 8 | 7 |
| 9 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
| 10 #include "base/stl_util-inl.h" | 9 #include "base/stl_util-inl.h" |
| 11 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| 12 #include "base/string_piece.h" | 11 #include "base/string_piece.h" |
| 13 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 14 #include "base/win/registry.h" | 13 #include "base/win/registry.h" |
| 15 #include "chrome/browser/policy/configuration_policy_pref_store.h" | 14 #include "chrome/browser/policy/configuration_policy_pref_store.h" |
| 16 #include "chrome/browser/policy/configuration_policy_provider_win.h" | 15 #include "chrome/browser/policy/configuration_policy_provider_win.h" |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 kPolicyExtensionInstallDenyList, | 422 kPolicyExtensionInstallDenyList, |
| 424 key::kExtensionInstallDenyList), | 423 key::kExtensionInstallDenyList), |
| 425 PolicyTestParams::ForBooleanPolicy( | 424 PolicyTestParams::ForBooleanPolicy( |
| 426 kPolicyShowHomeButton, | 425 kPolicyShowHomeButton, |
| 427 key::kShowHomeButton), | 426 key::kShowHomeButton), |
| 428 PolicyTestParams::ForBooleanPolicy( | 427 PolicyTestParams::ForBooleanPolicy( |
| 429 kPolicyPrintingEnabled, | 428 kPolicyPrintingEnabled, |
| 430 key::kPrintingEnabled))); | 429 key::kPrintingEnabled))); |
| 431 | 430 |
| 432 } // namespace policy | 431 } // namespace policy |
| OLD | NEW |