| 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 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 // An integer pref. Holds one of several values: | 901 // An integer pref. Holds one of several values: |
| 902 // 0: Supported. Device is in supported state. | 902 // 0: Supported. Device is in supported state. |
| 903 // 1: Security Only. Device is in Security-Only update (after initial 5 years). | 903 // 1: Security Only. Device is in Security-Only update (after initial 5 years). |
| 904 // 2: EOL. Device is End of Life(No more updates expected). | 904 // 2: EOL. Device is End of Life(No more updates expected). |
| 905 // This value needs to be consistent with EndOfLifeStatus enum. | 905 // This value needs to be consistent with EndOfLifeStatus enum. |
| 906 const char kEolStatus[] = "eol_status"; | 906 const char kEolStatus[] = "eol_status"; |
| 907 | 907 |
| 908 // Boolean pref indicating the End Of Life notification was dismissed by the | 908 // Boolean pref indicating the End Of Life notification was dismissed by the |
| 909 // user. | 909 // user. |
| 910 const char kEolNotificationDismissed[] = "eol_notification_dismissed"; | 910 const char kEolNotificationDismissed[] = "eol_notification_dismissed"; |
| 911 |
| 912 const char kQuickUnlockModeWhitelist[] = "quick_unlock_mode_whitelist"; |
| 913 const char kQuickUnlockTimeout[] = "quick_unlock_timeout"; |
| 911 #endif // defined(OS_CHROMEOS) | 914 #endif // defined(OS_CHROMEOS) |
| 912 | 915 |
| 913 // A boolean pref set to true if a Home button to open the Home pages should be | 916 // A boolean pref set to true if a Home button to open the Home pages should be |
| 914 // visible on the toolbar. | 917 // visible on the toolbar. |
| 915 const char kShowHomeButton[] = "browser.show_home_button"; | 918 const char kShowHomeButton[] = "browser.show_home_button"; |
| 916 | 919 |
| 917 // Boolean pref to define the default setting for "block offensive words". | 920 // Boolean pref to define the default setting for "block offensive words". |
| 918 // The old key value is kept to avoid unnecessary migration code. | 921 // The old key value is kept to avoid unnecessary migration code. |
| 919 const char kSpeechRecognitionFilterProfanities[] = | 922 const char kSpeechRecognitionFilterProfanities[] = |
| 920 "browser.speechinput_censor_results"; | 923 "browser.speechinput_censor_results"; |
| (...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2276 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2279 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2277 | 2280 |
| 2278 // A list of origin trial features to disable by policy. | 2281 // A list of origin trial features to disable by policy. |
| 2279 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2282 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2280 | 2283 |
| 2281 // Policy that indicates the state of updates for the binary components. | 2284 // Policy that indicates the state of updates for the binary components. |
| 2282 const char kComponentUpdatesEnabled[] = | 2285 const char kComponentUpdatesEnabled[] = |
| 2283 "component_updates.component_updates_enabled"; | 2286 "component_updates.component_updates_enabled"; |
| 2284 | 2287 |
| 2285 } // namespace prefs | 2288 } // namespace prefs |
| OLD | NEW |