OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
10 | 10 |
(...skipping 2235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2246 "media_router.action.always_show"; | 2246 "media_router.action.always_show"; |
2247 #endif // defined(ENABLE_MEDIA_ROUTER) | 2247 #endif // defined(ENABLE_MEDIA_ROUTER) |
2248 | 2248 |
2249 // The base64-encoded representation of the public key to use to validate origin | 2249 // The base64-encoded representation of the public key to use to validate origin |
2250 // trial token signatures. | 2250 // trial token signatures. |
2251 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2251 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2252 | 2252 |
2253 // A list of origin trial features to disable by policy. | 2253 // A list of origin trial features to disable by policy. |
2254 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2254 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2255 | 2255 |
| 2256 // Policy that indicates the state of updates for the binary components. |
| 2257 const char kEnabledComponentUpdates[] = |
| 2258 "component_updates.enabled_component_updates"; |
| 2259 |
2256 } // namespace prefs | 2260 } // namespace prefs |
OLD | NEW |