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 2277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2288 // through the first run flow. | 2288 // through the first run flow. |
2289 const char kMediaRouterCloudServicesPrefSet[] = | 2289 const char kMediaRouterCloudServicesPrefSet[] = |
2290 "media_router.cloudservices.prefset"; | 2290 "media_router.cloudservices.prefset"; |
2291 // Whether or not the user has enabled cloud services with Media Router. | 2291 // Whether or not the user has enabled cloud services with Media Router. |
2292 const char kMediaRouterEnableCloudServices[] = | 2292 const char kMediaRouterEnableCloudServices[] = |
2293 "media_router.cloudservices.enabled"; | 2293 "media_router.cloudservices.enabled"; |
2294 // Whether or not the Media Router first run flow has been acknowledged by the | 2294 // Whether or not the Media Router first run flow has been acknowledged by the |
2295 // user. | 2295 // user. |
2296 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2296 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2297 "media_router.firstrunflow.acknowledged"; | 2297 "media_router.firstrunflow.acknowledged"; |
| 2298 // A list of website origins on which the user has chosen to use tab mirroring. |
| 2299 const char kMediaRouterTabMirroringSources[] = |
| 2300 "media_router.tab_mirroring_sources"; |
2298 #endif | 2301 #endif |
2299 | 2302 |
2300 // The base64-encoded representation of the public key to use to validate origin | 2303 // The base64-encoded representation of the public key to use to validate origin |
2301 // trial token signatures. | 2304 // trial token signatures. |
2302 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2305 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2303 | 2306 |
2304 // A list of origin trial features to disable by policy. | 2307 // A list of origin trial features to disable by policy. |
2305 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2308 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2306 | 2309 |
2307 // Policy that indicates the state of updates for the binary components. | 2310 // Policy that indicates the state of updates for the binary components. |
(...skipping 18 matching lines...) Expand all Loading... |
2326 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = | 2329 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = |
2327 "search_geolocation_pre_disclosure_metrics_recorded"; | 2330 "search_geolocation_pre_disclosure_metrics_recorded"; |
2328 | 2331 |
2329 // Whether the metrics for the state of geolocation post-disclosure being shown | 2332 // Whether the metrics for the state of geolocation post-disclosure being shown |
2330 // have been recorded. | 2333 // have been recorded. |
2331 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = | 2334 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = |
2332 "search_geolocation_post_disclosure_metrics_recorded"; | 2335 "search_geolocation_post_disclosure_metrics_recorded"; |
2333 #endif | 2336 #endif |
2334 | 2337 |
2335 } // namespace prefs | 2338 } // namespace prefs |
OLD | NEW |