OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 | 486 |
487 // Clear Browsing Data dialog preferences. | 487 // Clear Browsing Data dialog preferences. |
488 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; | 488 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; |
489 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; | 489 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; |
490 const char kDeleteCache[] = "browser.clear_data.cache"; | 490 const char kDeleteCache[] = "browser.clear_data.cache"; |
491 const char kDeleteCookies[] = "browser.clear_data.cookies"; | 491 const char kDeleteCookies[] = "browser.clear_data.cookies"; |
492 const char kDeletePasswords[] = "browser.clear_data.passwords"; | 492 const char kDeletePasswords[] = "browser.clear_data.passwords"; |
493 const char kDeleteFormData[] = "browser.clear_data.form_data"; | 493 const char kDeleteFormData[] = "browser.clear_data.form_data"; |
494 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | 494 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; |
495 | 495 |
496 // Whether there is a Flash version installed that supports clearing LSO data. | |
497 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | |
498 | |
499 // Boolean pref to define the default values for using spellchecker. | 496 // Boolean pref to define the default values for using spellchecker. |
500 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; | 497 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; |
501 | 498 |
502 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). | 499 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). |
503 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; | 500 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
504 | 501 |
505 // Boolean pref to define the default values for using auto spell correct. | 502 // Boolean pref to define the default values for using auto spell correct. |
506 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; | 503 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; |
507 | 504 |
508 // Boolean controlling whether history saving is disabled. | 505 // Boolean controlling whether history saving is disabled. |
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1214 #if defined(OS_CHROMEOS) | 1211 #if defined(OS_CHROMEOS) |
1215 // Dictionary for transient storage of settings that should go into signed | 1212 // Dictionary for transient storage of settings that should go into signed |
1216 // settings storage before owner has been assigned. | 1213 // settings storage before owner has been assigned. |
1217 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; | 1214 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; |
1218 | 1215 |
1219 // The hardware keyboard layout of the device. This should look like | 1216 // The hardware keyboard layout of the device. This should look like |
1220 // "xkb:us::eng". | 1217 // "xkb:us::eng". |
1221 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; | 1218 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; |
1222 #endif | 1219 #endif |
1223 | 1220 |
| 1221 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1222 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1223 |
1224 // *************** SERVICE PREFS *************** | 1224 // *************** SERVICE PREFS *************** |
1225 // These are attached to the service process. | 1225 // These are attached to the service process. |
1226 | 1226 |
1227 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 1227 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
1228 // The unique id for this instance of the cloud print proxy. | 1228 // The unique id for this instance of the cloud print proxy. |
1229 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 1229 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
1230 // The GAIA auth token for Cloud Print | 1230 // The GAIA auth token for Cloud Print |
1231 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 1231 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
1232 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 1232 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
1233 // This should eventually go away because the above token should work for both. | 1233 // This should eventually go away because the above token should work for both. |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1287 "profile.managed_popups_blocked_for_urls"; | 1287 "profile.managed_popups_blocked_for_urls"; |
1288 | 1288 |
1289 // Dictionary for storing the set of known background pages (keys are extension | 1289 // Dictionary for storing the set of known background pages (keys are extension |
1290 // IDs of background page owners, value is a boolean that is true if the user | 1290 // IDs of background page owners, value is a boolean that is true if the user |
1291 // needs to acknowledge this page. | 1291 // needs to acknowledge this page. |
1292 const char kKnownBackgroundPages[] = "background_pages.known"; | 1292 const char kKnownBackgroundPages[] = "background_pages.known"; |
1293 | 1293 |
1294 // Dictionary that maps URL schemes (protocols) to URL handlers. | 1294 // Dictionary that maps URL schemes (protocols) to URL handlers. |
1295 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; | 1295 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; |
1296 } // namespace prefs | 1296 } // namespace prefs |
OLD | NEW |