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 2236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2247 const char kMediaRouterCloudServicesPrefSet[] = | 2247 const char kMediaRouterCloudServicesPrefSet[] = |
2248 "media_router.cloudservices.prefset"; | 2248 "media_router.cloudservices.prefset"; |
2249 // Whether or not the user has enabled cloud services with Media Router. | 2249 // Whether or not the user has enabled cloud services with Media Router. |
2250 const char kMediaRouterEnableCloudServices[] = | 2250 const char kMediaRouterEnableCloudServices[] = |
2251 "media_router.cloudservices.enabled"; | 2251 "media_router.cloudservices.enabled"; |
2252 #endif // defined(GOOGLE_CHROME_BUILD) | 2252 #endif // defined(GOOGLE_CHROME_BUILD) |
2253 // Whether or not the Media Router first run flow has been acknowledged by the | 2253 // Whether or not the Media Router first run flow has been acknowledged by the |
2254 // user. | 2254 // user. |
2255 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2255 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2256 "media_router.firstrunflow.acknowledged"; | 2256 "media_router.firstrunflow.acknowledged"; |
2257 #endif | 2257 const char kMediaRouterAlwaysShowActionIcon[] = |
| 2258 "media_router.action.always_show"; |
| 2259 #endif // defined(ENABLE_MEDIA_ROUTER) |
2258 | 2260 |
2259 // The base64-encoded representation of the public key to use to validate origin | 2261 // The base64-encoded representation of the public key to use to validate origin |
2260 // trial token signatures. | 2262 // trial token signatures. |
2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2263 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2262 | 2264 |
2263 // A list of origin trial features to disable by policy. | 2265 // A list of origin trial features to disable by policy. |
2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2266 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2265 | 2267 |
2266 // Policy that indicates the state of updates for the binary components. | 2268 // Policy that indicates the state of updates for the binary components. |
2267 const char kComponentUpdatesEnabled[] = | 2269 const char kComponentUpdatesEnabled[] = |
2268 "component_updates.component_updates_enabled"; | 2270 "component_updates.component_updates_enabled"; |
2269 | 2271 |
2270 } // namespace prefs | 2272 } // namespace prefs |
OLD | NEW |