| 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 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 // separated with comma punctuation mark. | 698 // separated with comma punctuation mark. |
| 699 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; | 699 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; |
| 700 | 700 |
| 701 // Clear Browsing Data dialog preferences. | 701 // Clear Browsing Data dialog preferences. |
| 702 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; | 702 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; |
| 703 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; | 703 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; |
| 704 const char kDeleteCache[] = "browser.clear_data.cache"; | 704 const char kDeleteCache[] = "browser.clear_data.cache"; |
| 705 const char kDeleteCookies[] = "browser.clear_data.cookies"; | 705 const char kDeleteCookies[] = "browser.clear_data.cookies"; |
| 706 const char kDeletePasswords[] = "browser.clear_data.passwords"; | 706 const char kDeletePasswords[] = "browser.clear_data.passwords"; |
| 707 const char kDeleteFormData[] = "browser.clear_data.form_data"; | 707 const char kDeleteFormData[] = "browser.clear_data.form_data"; |
| 708 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; |
| 708 const char kDeauthorizeContentLicenses[] = | 709 const char kDeauthorizeContentLicenses[] = |
| 709 "browser.clear_data.content_licenses"; | 710 "browser.clear_data.content_licenses"; |
| 710 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | 711 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; |
| 711 | 712 |
| 712 // Boolean pref to define the default values for using spellchecker. | 713 // Boolean pref to define the default values for using spellchecker. |
| 713 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; | 714 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; |
| 714 | 715 |
| 715 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). | 716 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). |
| 716 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; | 717 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
| 717 | 718 |
| (...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1899 const char kInManagedMode[] = "managed_mode"; | 1900 const char kInManagedMode[] = "managed_mode"; |
| 1900 | 1901 |
| 1901 // Counts how many more times the 'profile on a network share' warning should be | 1902 // Counts how many more times the 'profile on a network share' warning should be |
| 1902 // shown to the user before the next silence period. | 1903 // shown to the user before the next silence period. |
| 1903 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 1904 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 1904 // Tracks the time of the last shown warning. Used to reset | 1905 // Tracks the time of the last shown warning. Used to reset |
| 1905 // |network_profile.warnings_left| after a silence period. | 1906 // |network_profile.warnings_left| after a silence period. |
| 1906 const char kNetworkProfileLastWarningTime[] = | 1907 const char kNetworkProfileLastWarningTime[] = |
| 1907 "network_profile.last_warning_time"; | 1908 "network_profile.last_warning_time"; |
| 1908 } // namespace prefs | 1909 } // namespace prefs |
| OLD | NEW |