diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-31 17:14:02 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-31 17:14:02 +0000 |
commit | 55209a4b0b801a3bc2f790d4a75d10ccfdf34f6e (patch) | |
tree | 9d78a47b203af9ebd322efcb6fc2e9f026b7e47e /chrome/browser/browsing_data_remover.h | |
parent | 6e9cebe49f63b4a783acb2446a5eb2e7618c6cbd (diff) | |
download | chromium_src-55209a4b0b801a3bc2f790d4a75d10ccfdf34f6e.zip chromium_src-55209a4b0b801a3bc2f790d4a75d10ccfdf34f6e.tar.gz chromium_src-55209a4b0b801a3bc2f790d4a75d10ccfdf34f6e.tar.bz2 |
Adding preferences and clear browsing data for form autofill.
BUG=None
TEST=Open the 'Clear browsing data' dialog, there should be a check box for from data. Open the options dialogue, 2nd tab, there should be an option for autofill.
Review URL: http://codereview.chromium.org/8740
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4292 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browsing_data_remover.h')
-rw-r--r-- | chrome/browser/browsing_data_remover.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/browsing_data_remover.h b/chrome/browser/browsing_data_remover.h index 81819f0..5d48606 100644 --- a/chrome/browser/browsing_data_remover.h +++ b/chrome/browser/browsing_data_remover.h @@ -25,7 +25,8 @@ class BrowsingDataRemover : public NotificationObserver { static const int REMOVE_DOWNLOADS = 1 << 1; static const int REMOVE_COOKIES = 1 << 2; static const int REMOVE_PASSWORDS = 1 << 3; - static const int REMOVE_CACHE = 1 << 4; + static const int REMOVE_FORM_DATA = 1 << 4; + static const int REMOVE_CACHE = 1 << 5; // Observer is notified when the removal is done. Done means keywords have // been deleted, cache cleared and all other tasks scheduled. |