| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; | 382 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; |
| 383 const char kDeleteCache[] = "browser.clear_data.cache"; | 383 const char kDeleteCache[] = "browser.clear_data.cache"; |
| 384 const char kDeleteCookies[] = "browser.clear_data.cookies"; | 384 const char kDeleteCookies[] = "browser.clear_data.cookies"; |
| 385 const char kDeletePasswords[] = "browser.clear_data.passwords"; | 385 const char kDeletePasswords[] = "browser.clear_data.passwords"; |
| 386 const char kDeleteFormData[] = "browser.clear_data.form_data"; | 386 const char kDeleteFormData[] = "browser.clear_data.form_data"; |
| 387 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | 387 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; |
| 388 | 388 |
| 389 // Boolean pref to define the default values for using spellchecker. | 389 // Boolean pref to define the default values for using spellchecker. |
| 390 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; | 390 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; |
| 391 | 391 |
| 392 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). |
| 393 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
| 394 |
| 392 // Boolean pref to define the default values for using auto spell correct. | 395 // Boolean pref to define the default values for using auto spell correct. |
| 393 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; | 396 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; |
| 394 | 397 |
| 395 // String pref to define the default values for print overlays. | 398 // String pref to define the default values for print overlays. |
| 396 const char kPrintingPageHeaderLeft[] = "printing.page.header.left"; | 399 const char kPrintingPageHeaderLeft[] = "printing.page.header.left"; |
| 397 const char kPrintingPageHeaderCenter[] = "printing.page.header.center"; | 400 const char kPrintingPageHeaderCenter[] = "printing.page.header.center"; |
| 398 const char kPrintingPageHeaderRight[] = "printing.page.header.right"; | 401 const char kPrintingPageHeaderRight[] = "printing.page.header.right"; |
| 399 const char kPrintingPageFooterLeft[] = "printing.page.footer.left"; | 402 const char kPrintingPageFooterLeft[] = "printing.page.footer.left"; |
| 400 const char kPrintingPageFooterCenter[] = "printing.page.footer.center"; | 403 const char kPrintingPageFooterCenter[] = "printing.page.footer.center"; |
| 401 const char kPrintingPageFooterRight[] = "printing.page.footer.right"; | 404 const char kPrintingPageFooterRight[] = "printing.page.footer.right"; |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 956 // String specifying the proxy server. For a specification of the expected | 959 // String specifying the proxy server. For a specification of the expected |
| 957 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 960 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 958 const char kProxyServer[] = "proxy.server"; | 961 const char kProxyServer[] = "proxy.server"; |
| 959 // URL to the proxy .pac file. | 962 // URL to the proxy .pac file. |
| 960 const char kProxyPacUrl[] = "proxy.pac_url"; | 963 const char kProxyPacUrl[] = "proxy.pac_url"; |
| 961 // String containing proxy bypass rules. For a specification of the | 964 // String containing proxy bypass rules. For a specification of the |
| 962 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 965 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 963 const char kProxyBypassList[] = "proxy.bypass_list"; | 966 const char kProxyBypassList[] = "proxy.bypass_list"; |
| 964 | 967 |
| 965 } // namespace prefs | 968 } // namespace prefs |
| OLD | NEW |