| 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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; | 843 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; |
| 844 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; | 844 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; |
| 845 const char kDeleteCache[] = "browser.clear_data.cache"; | 845 const char kDeleteCache[] = "browser.clear_data.cache"; |
| 846 const char kDeleteCookies[] = "browser.clear_data.cookies"; | 846 const char kDeleteCookies[] = "browser.clear_data.cookies"; |
| 847 const char kDeletePasswords[] = "browser.clear_data.passwords"; | 847 const char kDeletePasswords[] = "browser.clear_data.passwords"; |
| 848 const char kDeleteFormData[] = "browser.clear_data.form_data"; | 848 const char kDeleteFormData[] = "browser.clear_data.form_data"; |
| 849 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; | 849 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; |
| 850 const char kDeauthorizeContentLicenses[] = | 850 const char kDeauthorizeContentLicenses[] = |
| 851 "browser.clear_data.content_licenses"; | 851 "browser.clear_data.content_licenses"; |
| 852 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | 852 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; |
| 853 const char kLastClearBrowsingDataTime[] = |
| 854 "browser.last_clear_browsing_data_time"; |
| 853 | 855 |
| 854 // Boolean pref to define the default values for using spellchecker. | 856 // Boolean pref to define the default values for using spellchecker. |
| 855 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking"; | 857 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking"; |
| 856 | 858 |
| 857 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). | 859 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). |
| 858 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; | 860 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
| 859 | 861 |
| 860 // Boolean pref to define the default values for using auto spell correct. | 862 // Boolean pref to define the default values for using auto spell correct. |
| 861 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; | 863 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; |
| 862 | 864 |
| (...skipping 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2225 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2227 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2226 | 2228 |
| 2227 #if defined(OS_CHROMEOS) | 2229 #if defined(OS_CHROMEOS) |
| 2228 // The RLZ brand code, if enabled. | 2230 // The RLZ brand code, if enabled. |
| 2229 const char kRLZBrand[] = "rlz.brand"; | 2231 const char kRLZBrand[] = "rlz.brand"; |
| 2230 // Whether RLZ pings are disabled. | 2232 // Whether RLZ pings are disabled. |
| 2231 const char kRLZDisabled[] = "rlz.disabled"; | 2233 const char kRLZDisabled[] = "rlz.disabled"; |
| 2232 #endif | 2234 #endif |
| 2233 | 2235 |
| 2234 } // namespace prefs | 2236 } // namespace prefs |
| OLD | NEW |