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