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 2267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2278 // through the first run flow. | 2278 // through the first run flow. |
2279 const char kMediaRouterCloudServicesPrefSet[] = | 2279 const char kMediaRouterCloudServicesPrefSet[] = |
2280 "media_router.cloudservices.prefset"; | 2280 "media_router.cloudservices.prefset"; |
2281 // Whether or not the user has enabled cloud services with Media Router. | 2281 // Whether or not the user has enabled cloud services with Media Router. |
2282 const char kMediaRouterEnableCloudServices[] = | 2282 const char kMediaRouterEnableCloudServices[] = |
2283 "media_router.cloudservices.enabled"; | 2283 "media_router.cloudservices.enabled"; |
2284 // Whether or not the Media Router first run flow has been acknowledged by the | 2284 // Whether or not the Media Router first run flow has been acknowledged by the |
2285 // user. | 2285 // user. |
2286 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2286 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2287 "media_router.firstrunflow.acknowledged"; | 2287 "media_router.firstrunflow.acknowledged"; |
| 2288 // A dictionary mapping website hostnames to whether the user has chosen to use |
| 2289 // tab mirroring on that website. |
| 2290 const char kMediaRouterTabMirroringSelected[] = |
| 2291 "media_router.tab_mirroring_selected"; |
2288 #endif | 2292 #endif |
2289 | 2293 |
2290 // The base64-encoded representation of the public key to use to validate origin | 2294 // The base64-encoded representation of the public key to use to validate origin |
2291 // trial token signatures. | 2295 // trial token signatures. |
2292 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2296 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2293 | 2297 |
2294 // A list of origin trial features to disable by policy. | 2298 // A list of origin trial features to disable by policy. |
2295 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2299 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2296 | 2300 |
2297 // Policy that indicates the state of updates for the binary components. | 2301 // Policy that indicates the state of updates for the binary components. |
2298 const char kComponentUpdatesEnabled[] = | 2302 const char kComponentUpdatesEnabled[] = |
2299 "component_updates.component_updates_enabled"; | 2303 "component_updates.component_updates_enabled"; |
2300 | 2304 |
2301 #if defined(OS_ANDROID) | 2305 #if defined(OS_ANDROID) |
2302 // Whether the search geolocation disclosure has been dismissed by the user. | 2306 // Whether the search geolocation disclosure has been dismissed by the user. |
2303 const char kSearchGeolocationDisclosureDismissed[] = | 2307 const char kSearchGeolocationDisclosureDismissed[] = |
2304 "search_geolocation_disclosure.dismissed"; | 2308 "search_geolocation_disclosure.dismissed"; |
2305 | 2309 |
2306 // How many times the search geolocation disclosure has been shown. | 2310 // How many times the search geolocation disclosure has been shown. |
2307 const char kSearchGeolocationDisclosureShownCount[] = | 2311 const char kSearchGeolocationDisclosureShownCount[] = |
2308 "search_geolocation_disclosure.shown_count"; | 2312 "search_geolocation_disclosure.shown_count"; |
2309 | 2313 |
2310 // When the disclosure was shown last. | 2314 // When the disclosure was shown last. |
2311 const char kSearchGeolocationDisclosureLastShowDate[] = | 2315 const char kSearchGeolocationDisclosureLastShowDate[] = |
2312 "search_geolocation_disclosure.last_show_date"; | 2316 "search_geolocation_disclosure.last_show_date"; |
2313 #endif | 2317 #endif |
2314 | 2318 |
2315 } // namespace prefs | 2319 } // namespace prefs |
OLD | NEW |