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 #include <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 base::Value::TYPE_BOOLEAN }, | 325 base::Value::TYPE_BOOLEAN }, |
326 { key::kMaxConnectionsPerProxy, | 326 { key::kMaxConnectionsPerProxy, |
327 prefs::kMaxConnectionsPerProxy, | 327 prefs::kMaxConnectionsPerProxy, |
328 base::Value::TYPE_INTEGER }, | 328 base::Value::TYPE_INTEGER }, |
329 { key::kURLWhitelist, | 329 { key::kURLWhitelist, |
330 policy_prefs::kUrlWhitelist, | 330 policy_prefs::kUrlWhitelist, |
331 base::Value::TYPE_LIST }, | 331 base::Value::TYPE_LIST }, |
332 { key::kRestrictSigninToPattern, | 332 { key::kRestrictSigninToPattern, |
333 prefs::kGoogleServicesUsernamePattern, | 333 prefs::kGoogleServicesUsernamePattern, |
334 base::Value::TYPE_STRING }, | 334 base::Value::TYPE_STRING }, |
| 335 { key::kDefaultWebBluetoothGuardSetting, |
| 336 prefs::kManagedDefaultWebBluetoothGuardSetting, |
| 337 base::Value::TYPE_INTEGER }, |
335 { key::kDefaultMediaStreamSetting, | 338 { key::kDefaultMediaStreamSetting, |
336 prefs::kManagedDefaultMediaStreamSetting, | 339 prefs::kManagedDefaultMediaStreamSetting, |
337 base::Value::TYPE_INTEGER }, | 340 base::Value::TYPE_INTEGER }, |
338 { key::kDisableSafeBrowsingProceedAnyway, | 341 { key::kDisableSafeBrowsingProceedAnyway, |
339 prefs::kSafeBrowsingProceedAnywayDisabled, | 342 prefs::kSafeBrowsingProceedAnywayDisabled, |
340 base::Value::TYPE_BOOLEAN }, | 343 base::Value::TYPE_BOOLEAN }, |
341 { key::kSafeBrowsingExtendedReportingOptInAllowed, | 344 { key::kSafeBrowsingExtendedReportingOptInAllowed, |
342 prefs::kSafeBrowsingExtendedReportingOptInAllowed, | 345 prefs::kSafeBrowsingExtendedReportingOptInAllowed, |
343 base::Value::TYPE_BOOLEAN }, | 346 base::Value::TYPE_BOOLEAN }, |
344 { key::kSSLErrorOverrideAllowed, | 347 { key::kSSLErrorOverrideAllowed, |
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, | 831 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, |
829 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); | 832 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); |
830 handlers->AddHandler(make_scoped_ptr( | 833 handlers->AddHandler(make_scoped_ptr( |
831 new chromeos::KeyPermissionsPolicyHandler(chrome_schema))); | 834 new chromeos::KeyPermissionsPolicyHandler(chrome_schema))); |
832 #endif // defined(OS_CHROMEOS) | 835 #endif // defined(OS_CHROMEOS) |
833 | 836 |
834 return handlers; | 837 return handlers; |
835 } | 838 } |
836 | 839 |
837 } // namespace policy | 840 } // namespace policy |
OLD | NEW |