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/features.h" | 9 #include "chrome/common/features.h" |
10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
(...skipping 2266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2277 // through the first run flow. | 2277 // through the first run flow. |
2278 const char kMediaRouterCloudServicesPrefSet[] = | 2278 const char kMediaRouterCloudServicesPrefSet[] = |
2279 "media_router.cloudservices.prefset"; | 2279 "media_router.cloudservices.prefset"; |
2280 // Whether or not the user has enabled cloud services with Media Router. | 2280 // Whether or not the user has enabled cloud services with Media Router. |
2281 const char kMediaRouterEnableCloudServices[] = | 2281 const char kMediaRouterEnableCloudServices[] = |
2282 "media_router.cloudservices.enabled"; | 2282 "media_router.cloudservices.enabled"; |
2283 // Whether or not the Media Router first run flow has been acknowledged by the | 2283 // Whether or not the Media Router first run flow has been acknowledged by the |
2284 // user. | 2284 // user. |
2285 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2285 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2286 "media_router.firstrunflow.acknowledged"; | 2286 "media_router.firstrunflow.acknowledged"; |
| 2287 // A dictionary mapping website hostnames to user's preference for the cast mode |
| 2288 // to use on that website. |
| 2289 const char kMediaRouterCastModeSelections[] = |
| 2290 "media_router.cast_mode_selections"; |
2287 #endif | 2291 #endif |
2288 | 2292 |
2289 // The base64-encoded representation of the public key to use to validate origin | 2293 // The base64-encoded representation of the public key to use to validate origin |
2290 // trial token signatures. | 2294 // trial token signatures. |
2291 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2295 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2292 | 2296 |
2293 // A list of origin trial features to disable by policy. | 2297 // A list of origin trial features to disable by policy. |
2294 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2298 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2295 | 2299 |
2296 // Policy that indicates the state of updates for the binary components. | 2300 // Policy that indicates the state of updates for the binary components. |
2297 const char kComponentUpdatesEnabled[] = | 2301 const char kComponentUpdatesEnabled[] = |
2298 "component_updates.component_updates_enabled"; | 2302 "component_updates.component_updates_enabled"; |
2299 | 2303 |
2300 } // namespace prefs | 2304 } // namespace prefs |
OLD | NEW |