| 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 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 // separated with comma punctuation mark. | 714 // separated with comma punctuation mark. |
| 715 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; | 715 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; |
| 716 | 716 |
| 717 // Clear Browsing Data dialog preferences. | 717 // Clear Browsing Data dialog preferences. |
| 718 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; | 718 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; |
| 719 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; | 719 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; |
| 720 const char kDeleteCache[] = "browser.clear_data.cache"; | 720 const char kDeleteCache[] = "browser.clear_data.cache"; |
| 721 const char kDeleteCookies[] = "browser.clear_data.cookies"; | 721 const char kDeleteCookies[] = "browser.clear_data.cookies"; |
| 722 const char kDeletePasswords[] = "browser.clear_data.passwords"; | 722 const char kDeletePasswords[] = "browser.clear_data.passwords"; |
| 723 const char kDeleteFormData[] = "browser.clear_data.form_data"; | 723 const char kDeleteFormData[] = "browser.clear_data.form_data"; |
| 724 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; |
| 724 const char kDeauthorizeContentLicenses[] = | 725 const char kDeauthorizeContentLicenses[] = |
| 725 "browser.clear_data.content_licenses"; | 726 "browser.clear_data.content_licenses"; |
| 726 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | 727 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; |
| 727 | 728 |
| 728 // Boolean pref to define the default values for using spellchecker. | 729 // Boolean pref to define the default values for using spellchecker. |
| 729 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; | 730 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; |
| 730 | 731 |
| 731 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). | 732 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). |
| 732 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; | 733 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
| 733 | 734 |
| (...skipping 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1932 const char kInManagedMode[] = "managed_mode"; | 1933 const char kInManagedMode[] = "managed_mode"; |
| 1933 | 1934 |
| 1934 // Counts how many more times the 'profile on a network share' warning should be | 1935 // Counts how many more times the 'profile on a network share' warning should be |
| 1935 // shown to the user before the next silence period. | 1936 // shown to the user before the next silence period. |
| 1936 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 1937 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 1937 // Tracks the time of the last shown warning. Used to reset | 1938 // Tracks the time of the last shown warning. Used to reset |
| 1938 // |network_profile.warnings_left| after a silence period. | 1939 // |network_profile.warnings_left| after a silence period. |
| 1939 const char kNetworkProfileLastWarningTime[] = | 1940 const char kNetworkProfileLastWarningTime[] = |
| 1940 "network_profile.last_warning_time"; | 1941 "network_profile.last_warning_time"; |
| 1941 } // namespace prefs | 1942 } // namespace prefs |
| OLD | NEW |