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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 base::Value::TYPE_BOOLEAN }, | 86 base::Value::TYPE_BOOLEAN }, |
87 { key::kBuiltInDnsClientEnabled, | 87 { key::kBuiltInDnsClientEnabled, |
88 prefs::kBuiltInDnsClientEnabled, | 88 prefs::kBuiltInDnsClientEnabled, |
89 base::Value::TYPE_BOOLEAN }, | 89 base::Value::TYPE_BOOLEAN }, |
90 { key::kWPADQuickCheckEnabled, | 90 { key::kWPADQuickCheckEnabled, |
91 prefs::kQuickCheckEnabled, | 91 prefs::kQuickCheckEnabled, |
92 base::Value::TYPE_BOOLEAN }, | 92 base::Value::TYPE_BOOLEAN }, |
93 { key::kDisableSpdy, | 93 { key::kDisableSpdy, |
94 prefs::kDisableSpdy, | 94 prefs::kDisableSpdy, |
95 base::Value::TYPE_BOOLEAN }, | 95 base::Value::TYPE_BOOLEAN }, |
| 96 { key::kQuicEnabled, |
| 97 prefs::kQuicEnabled, |
| 98 base::Value::TYPE_BOOLEAN }, |
96 { key::kSafeBrowsingEnabled, | 99 { key::kSafeBrowsingEnabled, |
97 prefs::kSafeBrowsingEnabled, | 100 prefs::kSafeBrowsingEnabled, |
98 base::Value::TYPE_BOOLEAN }, | 101 base::Value::TYPE_BOOLEAN }, |
99 { key::kForceSafeSearch, | 102 { key::kForceSafeSearch, |
100 prefs::kForceSafeSearch, | 103 prefs::kForceSafeSearch, |
101 base::Value::TYPE_BOOLEAN }, | 104 base::Value::TYPE_BOOLEAN }, |
102 { key::kForceGoogleSafeSearch, | 105 { key::kForceGoogleSafeSearch, |
103 prefs::kForceGoogleSafeSearch, | 106 prefs::kForceGoogleSafeSearch, |
104 base::Value::TYPE_BOOLEAN }, | 107 base::Value::TYPE_BOOLEAN }, |
105 { key::kForceYouTubeSafetyMode, | 108 { key::kForceYouTubeSafetyMode, |
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 chrome_schema, | 797 chrome_schema, |
795 SCHEMA_STRICT, | 798 SCHEMA_STRICT, |
796 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, | 799 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, |
797 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); | 800 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); |
798 #endif // defined(OS_CHROMEOS) | 801 #endif // defined(OS_CHROMEOS) |
799 | 802 |
800 return handlers.Pass(); | 803 return handlers.Pass(); |
801 } | 804 } |
802 | 805 |
803 } // namespace policy | 806 } // namespace policy |
OLD | NEW |