| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 #include "components/variations/pref_names.h" | 57 #include "components/variations/pref_names.h" |
| 58 #include "extensions/features/features.h" | 58 #include "extensions/features/features.h" |
| 59 #include "media/media_features.h" | 59 #include "media/media_features.h" |
| 60 #include "ppapi/features/features.h" | 60 #include "ppapi/features/features.h" |
| 61 | 61 |
| 62 #if defined(OS_ANDROID) | 62 #if defined(OS_ANDROID) |
| 63 #include "chrome/browser/search/contextual_search_policy_handler_android.h" | 63 #include "chrome/browser/search/contextual_search_policy_handler_android.h" |
| 64 #endif | 64 #endif |
| 65 | 65 |
| 66 #if defined(OS_CHROMEOS) | 66 #if defined(OS_CHROMEOS) |
| 67 #include "ash/common/accessibility_types.h" | 67 #include "ash/accessibility_types.h" |
| 68 #include "chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.h
" | 68 #include "chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.h
" |
| 69 #include "chrome/browser/chromeos/policy/configuration_policy_handler_chromeos.h
" | 69 #include "chrome/browser/chromeos/policy/configuration_policy_handler_chromeos.h
" |
| 70 #include "chrome/browser/policy/default_geolocation_policy_handler.h" | 70 #include "chrome/browser/policy/default_geolocation_policy_handler.h" |
| 71 #include "chromeos/chromeos_pref_names.h" | 71 #include "chromeos/chromeos_pref_names.h" |
| 72 #include "chromeos/dbus/power_policy_controller.h" | 72 #include "chromeos/dbus/power_policy_controller.h" |
| 73 #include "components/drive/drive_pref_names.h" | 73 #include "components/drive/drive_pref_names.h" |
| 74 #include "components/user_manager/user.h" | 74 #include "components/user_manager/user.h" |
| 75 #include "components/user_manager/user_manager.h" | 75 #include "components/user_manager/user_manager.h" |
| 76 #endif | 76 #endif |
| 77 | 77 |
| (...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1012 #endif // defined(OS_CHROMEOS) | 1012 #endif // defined(OS_CHROMEOS) |
| 1013 | 1013 |
| 1014 #if BUILDFLAG(ENABLE_PLUGINS) | 1014 #if BUILDFLAG(ENABLE_PLUGINS) |
| 1015 handlers->AddHandler(base::MakeUnique<PluginPolicyHandler>()); | 1015 handlers->AddHandler(base::MakeUnique<PluginPolicyHandler>()); |
| 1016 #endif // BUILDFLAG(ENABLE_PLUGINS) | 1016 #endif // BUILDFLAG(ENABLE_PLUGINS) |
| 1017 | 1017 |
| 1018 return handlers; | 1018 return handlers; |
| 1019 } | 1019 } |
| 1020 | 1020 |
| 1021 } // namespace policy | 1021 } // namespace policy |
| OLD | NEW |