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 2358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2369 "media_router.tab_mirroring_sources"; | 2369 "media_router.tab_mirroring_sources"; |
2370 #endif | 2370 #endif |
2371 | 2371 |
2372 // The base64-encoded representation of the public key to use to validate origin | 2372 // The base64-encoded representation of the public key to use to validate origin |
2373 // trial token signatures. | 2373 // trial token signatures. |
2374 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2374 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2375 | 2375 |
2376 // A list of origin trial features to disable by policy. | 2376 // A list of origin trial features to disable by policy. |
2377 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2377 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2378 | 2378 |
| 2379 // A list of origin trial tokens to disable by policy. |
| 2380 const char kOriginTrialDisabledTokens[] = "origin_trials.disabled_tokens"; |
| 2381 |
2379 // Policy that indicates the state of updates for the binary components. | 2382 // Policy that indicates the state of updates for the binary components. |
2380 const char kComponentUpdatesEnabled[] = | 2383 const char kComponentUpdatesEnabled[] = |
2381 "component_updates.component_updates_enabled"; | 2384 "component_updates.component_updates_enabled"; |
2382 | 2385 |
2383 #if defined(OS_ANDROID) | 2386 #if defined(OS_ANDROID) |
2384 // Whether the search geolocation disclosure has been dismissed by the user. | 2387 // Whether the search geolocation disclosure has been dismissed by the user. |
2385 const char kSearchGeolocationDisclosureDismissed[] = | 2388 const char kSearchGeolocationDisclosureDismissed[] = |
2386 "search_geolocation_disclosure.dismissed"; | 2389 "search_geolocation_disclosure.dismissed"; |
2387 | 2390 |
2388 // How many times the search geolocation disclosure has been shown. | 2391 // How many times the search geolocation disclosure has been shown. |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2477 | 2480 |
2478 // Number of times user has seen the "desktop to iOS" history page promotion. | 2481 // Number of times user has seen the "desktop to iOS" history page promotion. |
2479 const char kNumberHistoryPageIOSPromoShown[] = | 2482 const char kNumberHistoryPageIOSPromoShown[] = |
2480 "history_page_ios_promo_shown_count"; | 2483 "history_page_ios_promo_shown_count"; |
2481 | 2484 |
2482 // True if the user has dismissed the "desktop to iOS" history page promotion. | 2485 // True if the user has dismissed the "desktop to iOS" history page promotion. |
2483 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; | 2486 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; |
2484 #endif | 2487 #endif |
2485 | 2488 |
2486 } // namespace prefs | 2489 } // namespace prefs |
OLD | NEW |