diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-15 18:20:54 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-15 18:20:54 +0000 |
commit | dfaa8db80cfdf7c4f04dfedf87642a0f333da0e1 (patch) | |
tree | e7a386d840a4db2b7f7195259958c5dd96533256 /chrome/common/pref_names.cc | |
parent | 57acf1f06349b991670c5cf164f1a1e6d520034f (diff) | |
download | chromium_src-dfaa8db80cfdf7c4f04dfedf87642a0f333da0e1.zip chromium_src-dfaa8db80cfdf7c4f04dfedf87642a0f333da0e1.tar.gz chromium_src-dfaa8db80cfdf7c4f04dfedf87642a0f333da0e1.tar.bz2 |
Add preferences for the clear browsing data dialog so that
the user choices are persistent.
Patch by Arthur Lussos <developer0420@gmail.com>
Original issue at http://codereview.chromium.org/3014
Review URL: http://codereview.chromium.org/3059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2222 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index b664b24..9d2be21 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -193,6 +193,15 @@ const wchar_t kShowHomeButton[] = L"browser.show_home_button"; const wchar_t kRecentlySelectedEncoding[] = L"profile.recently_selected_encodings"; +// Boolean prefs that define the default values for the check boxes in the Clear +// Browsing Data dialog. +const wchar_t kDeleteBrowsingHistory[] = L"browser.clear_data.browsing_history"; +const wchar_t kDeleteDownloadHistory[] = + L"browser.clear_data.download_history"; +const wchar_t kDeleteCache[] = L"browser.clear_data.cache"; +const wchar_t kDeleteCookies[] = L"browser.clear_data.cookies"; +const wchar_t kDeletePasswords[] = L"browser.clear_data.passwords"; + // *************** LOCAL STATE *************** // These are attached to the machine/installation |