| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/policy/configuration_policy_handler_list_factory.h" | 5 #include "chrome/browser/policy/configuration_policy_handler_list_factory.h" |
| 6 | 6 |
| 7 #include <limits.h> | 7 #include <limits.h> |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "components/policy/core/browser/proxy_policy_handler.h" | 38 #include "components/policy/core/browser/proxy_policy_handler.h" |
| 39 #include "components/policy/core/browser/url_blacklist_policy_handler.h" | 39 #include "components/policy/core/browser/url_blacklist_policy_handler.h" |
| 40 #include "components/policy/core/common/policy_details.h" | 40 #include "components/policy/core/common/policy_details.h" |
| 41 #include "components/policy/core/common/policy_map.h" | 41 #include "components/policy/core/common/policy_map.h" |
| 42 #include "components/policy/core/common/policy_pref_names.h" | 42 #include "components/policy/core/common/policy_pref_names.h" |
| 43 #include "components/policy/core/common/schema.h" | 43 #include "components/policy/core/common/schema.h" |
| 44 #include "components/prefs/pref_value_map.h" | 44 #include "components/prefs/pref_value_map.h" |
| 45 #include "components/search_engines/default_search_policy_handler.h" | 45 #include "components/search_engines/default_search_policy_handler.h" |
| 46 #include "components/signin/core/common/signin_pref_names.h" | 46 #include "components/signin/core/common/signin_pref_names.h" |
| 47 #include "components/ssl_config/ssl_config_prefs.h" | 47 #include "components/ssl_config/ssl_config_prefs.h" |
| 48 #include "components/sync_driver/sync_policy_handler.h" | 48 #include "components/sync/driver/sync_policy_handler.h" |
| 49 #include "components/translate/core/common/translate_pref_names.h" | 49 #include "components/translate/core/common/translate_pref_names.h" |
| 50 #include "components/variations/pref_names.h" | 50 #include "components/variations/pref_names.h" |
| 51 #include "policy/policy_constants.h" | 51 #include "policy/policy_constants.h" |
| 52 | 52 |
| 53 #if BUILDFLAG(ANDROID_JAVA_UI) | 53 #if BUILDFLAG(ANDROID_JAVA_UI) |
| 54 #include "chrome/browser/search/contextual_search_policy_handler_android.h" | 54 #include "chrome/browser/search/contextual_search_policy_handler_android.h" |
| 55 #endif | 55 #endif |
| 56 | 56 |
| 57 #if defined(OS_CHROMEOS) | 57 #if defined(OS_CHROMEOS) |
| 58 #include "ash/common/accessibility_types.h" | 58 #include "ash/common/accessibility_types.h" |
| (...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, | 868 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, |
| 869 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); | 869 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); |
| 870 handlers->AddHandler(base::WrapUnique( | 870 handlers->AddHandler(base::WrapUnique( |
| 871 new chromeos::KeyPermissionsPolicyHandler(chrome_schema))); | 871 new chromeos::KeyPermissionsPolicyHandler(chrome_schema))); |
| 872 #endif // defined(OS_CHROMEOS) | 872 #endif // defined(OS_CHROMEOS) |
| 873 | 873 |
| 874 return handlers; | 874 return handlers; |
| 875 } | 875 } |
| 876 | 876 |
| 877 } // namespace policy | 877 } // namespace policy |
| OLD | NEW |