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 "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 base::Value::TYPE_BOOLEAN }, | 214 base::Value::TYPE_BOOLEAN }, |
215 { key::kEnableOnlineRevocationChecks, | 215 { key::kEnableOnlineRevocationChecks, |
216 prefs::kCertRevocationCheckingEnabled, | 216 prefs::kCertRevocationCheckingEnabled, |
217 base::Value::TYPE_BOOLEAN }, | 217 base::Value::TYPE_BOOLEAN }, |
218 { key::kRequireOnlineRevocationChecksForLocalAnchors, | 218 { key::kRequireOnlineRevocationChecksForLocalAnchors, |
219 prefs::kCertRevocationCheckingRequiredLocalAnchors, | 219 prefs::kCertRevocationCheckingRequiredLocalAnchors, |
220 base::Value::TYPE_BOOLEAN }, | 220 base::Value::TYPE_BOOLEAN }, |
221 { key::kAuthSchemes, | 221 { key::kAuthSchemes, |
222 prefs::kAuthSchemes, | 222 prefs::kAuthSchemes, |
223 base::Value::TYPE_STRING }, | 223 base::Value::TYPE_STRING }, |
224 { key::kDisableAuthNegotiateCnameLookup, | |
225 prefs::kDisableAuthNegotiateCnameLookup, | |
226 base::Value::TYPE_BOOLEAN }, | |
227 { key::kEnableAuthNegotiatePort, | 224 { key::kEnableAuthNegotiatePort, |
228 prefs::kEnableAuthNegotiatePort, | 225 prefs::kEnableAuthNegotiatePort, |
229 base::Value::TYPE_BOOLEAN }, | 226 base::Value::TYPE_BOOLEAN }, |
230 { key::kAuthServerWhitelist, | 227 { key::kAuthServerWhitelist, |
231 prefs::kAuthServerWhitelist, | 228 prefs::kAuthServerWhitelist, |
232 base::Value::TYPE_STRING }, | 229 base::Value::TYPE_STRING }, |
233 { key::kAuthNegotiateDelegateWhitelist, | 230 { key::kAuthNegotiateDelegateWhitelist, |
234 prefs::kAuthNegotiateDelegateWhitelist, | 231 prefs::kAuthNegotiateDelegateWhitelist, |
235 base::Value::TYPE_STRING }, | 232 base::Value::TYPE_STRING }, |
236 { key::kGSSAPILibraryName, | 233 { key::kGSSAPILibraryName, |
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 chrome_schema, | 816 chrome_schema, |
820 SCHEMA_STRICT, | 817 SCHEMA_STRICT, |
821 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, | 818 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, |
822 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); | 819 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); |
823 #endif // defined(OS_CHROMEOS) | 820 #endif // defined(OS_CHROMEOS) |
824 | 821 |
825 return handlers.Pass(); | 822 return handlers.Pass(); |
826 } | 823 } |
827 | 824 |
828 } // namespace policy | 825 } // namespace policy |
OLD | NEW |