summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autocomplete_history_manager.cc
Commit message (Collapse)AuthorAgeFilesLines
* Display a warning when autofill is disabled for a website.isherman@chromium.org2010-11-161-14/+10
| | | | | | | | | | | | | This depends on a WebKit change being tracked at https://bugs.webkit.org/show_bug.cgi?id=49291 BUG=58509 TEST=unit_tests --gtest_filter=AutoFillManagerTest.*:AutoFillHelperTest.* Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=66214 Review URL: http://codereview.chromium.org/4591001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66237 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 66214 - Display a warning when autofill is disabled for a website.isherman@chromium.org2010-11-161-10/+14
| | | | | | | | | | | | | | This depends on a WebKit change being tracked at https://bugs.webkit.org/show_bug.cgi?id=49291 BUG=58509 TEST=unit_tests --gtest_filter=AutoFillManagerTest.*:AutoFillHelperTest.* Review URL: http://codereview.chromium.org/4591001 TBR=isherman@chromium.org Review URL: http://codereview.chromium.org/4985003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66220 0039d316-1c4b-4281-b951-d872f2087c98
* Display a warning when autofill is disabled for a website.isherman@chromium.org2010-11-161-14/+10
| | | | | | | | | | | This depends on a WebKit change being tracked at https://bugs.webkit.org/show_bug.cgi?id=49291 BUG=58509 TEST=unit_tests --gtest_filter=AutoFillManagerTest.*:AutoFillHelperTest.* Review URL: http://codereview.chromium.org/4591001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66214 0039d316-1c4b-4281-b951-d872f2087c98
* Update code that previously constructed strings from string iterators only ↵erikwright@chromium.org2010-10-221-9/+11
| | | | | | | | | | to use StringToInt. These usages now pass the iterators directly to the new StringToInt overloads. BUG=None TEST=All Review URL: http://codereview.chromium.org/3968001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63515 0039d316-1c4b-4281-b951-d872f2087c98
* Move prefs-related files under chrome/browser/ into a prefs/ subdir.evan@chromium.org2010-08-261-1/+1
| | | | | | | | | | | | Rename includes, resort header include order in places where the rename changed the order. BUG=50548 TEST=compiles Review URL: http://codereview.chromium.org/3203008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57434 0039d316-1c4b-4281-b951-d872f2087c98
* Not store autocomplete entries in DB for forms submitted using javascript.inferno@chromium.org2010-08-101-0/+4
| | | | | | | | BUG=51727 Review URL: http://codereview.chromium.org/3149003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55626 0039d316-1c4b-4281-b951-d872f2087c98
* Add #include utf_string_conversions.h to all files that use ASCIIToWide andbrettw@chromium.org2010-08-031-1/+2
| | | | | | | | | | | | | | | ASCIIToUTF16. I removed string_util includes from a few places where it obviously wasn't needed. In a separate pass, I'm going to remove ASCIITo* from string_util, then I'm going to do an even later pass to find the unnecessary string_util.h includes and remove them. TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/3058027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54746 0039d316-1c4b-4281-b951-d872f2087c98
* Convert more callers of the integer/string functions to usingbrettw@chromium.org2010-07-311-6/+8
| | | | | | | | | | string_number_conversions.h TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/3013046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54454 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a crashing bug in IsSSN(str) when presented with non-ascii input.michaeln@chromium.org2010-07-071-1/+1
| | | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/2858052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51803 0039d316-1c4b-4281-b951-d872f2087c98
* Autocomplete and AutoFill entries are shown combined in the suggestions popup.dhollowa@chromium.org2010-07-071-2/+2
| | | | | | | | | | | These changes merge popup menu suggestions for Autocomplete and AutoFill. Suggestions are collected from both sources and returned to the renderer as a single list. This combined list is given to WebKit to display in the suggestions popup. When the user selects an item in the popup the appropriate result gets filled in the fields. BUG=41328 TEST=AutoFillManagerTest.* Review URL: http://codereview.chromium.org/2878020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51736 0039d316-1c4b-4281-b951-d872f2087c98
* Don't save SSNs--quick style fix.avi@chromium.org2010-07-021-1/+1
| | | | | | | | | BUG=http://crbug.com/46590 TEST=unit test Review URL: http://codereview.chromium.org/2862042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51536 0039d316-1c4b-4281-b951-d872f2087c98
* Don't save SSNs.avi@chromium.org2010-07-021-3/+42
| | | | | | | | | BUG=http://crbug.com/46590 TEST=unit test Review URL: http://codereview.chromium.org/2853027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51535 0039d316-1c4b-4281-b951-d872f2087c98
* Putting this back in since it didn't solve the failures.thomasvl@chromium.org2010-06-081-45/+50
| | | | | | | | | | | | | | | | | | | Revert 49164 - Backing this out to see if it fixes the failures on the two windows bots (landed about when they started). Revert 49030 AutoFill: Don't save credit card numbers from Autocomplete to the WebDB. BUG=8026 TEST=AutocompleteHistoryManagerTest Review URL: http://codereview.chromium.org/2676003 TBR=jhawkins@chromium.org Review URL: http://codereview.chromium.org/2748002 TBR=thomasvl@chromium.org Review URL: http://codereview.chromium.org/2770001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49165 0039d316-1c4b-4281-b951-d872f2087c98
* Backing this out to see if it fixes the failures on the two windows bots ↵thomasvl@chromium.org2010-06-081-50/+45
| | | | | | | | | | | | | | | | (landed about when they started). Revert 49030 - AutoFill: Don't save credit card numbers from Autocomplete to the WebDB. BUG=8026 TEST=AutocompleteHistoryManagerTest Review URL: http://codereview.chromium.org/2676003 TBR=jhawkins@chromium.org Review URL: http://codereview.chromium.org/2748002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49164 0039d316-1c4b-4281-b951-d872f2087c98
* AutoFill: Don't save credit card numbers from Autocomplete to the WebDB.jhawkins@chromium.org2010-06-071-45/+50
| | | | | | | | | BUG=8026 TEST=AutocompleteHistoryManagerTest Review URL: http://codereview.chromium.org/2676003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49030 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Order the methods in WebDataService. Rename a method to match ↵jhawkins@chromium.org2010-04-261-2/+1
| | | | | | | | | | | current style. BUG=none TEST=none Review URL: http://codereview.chromium.org/1701012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45636 0039d316-1c4b-4281-b951-d872f2087c98
* AutoFill: Use the FormManager cache to send forms to the AutoFillManager.jhawkins@chromium.org2010-04-031-6/+7
| | | | | | | | | | | Remove the FormFieldValues class and replace its usage with FormData. BUG=38325,33032 TEST=none Review URL: http://codereview.chromium.org/1606005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43555 0039d316-1c4b-4281-b951-d872f2087c98
* AutoFill: Handle filling select controls.jhawkins@chromium.org2010-03-271-5/+3
| | | | | | | | | BUG=38222 TEST=none Review URL: http://codereview.chromium.org/1309003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42891 0039d316-1c4b-4281-b951-d872f2087c98
* Patch makes sure that only text fields are saved in Auto-fill "Web Data" ↵aarya@google.com2010-03-121-1/+1
| | | | | | | | | | file on disk. This prevent passwords from being saved on disk without user content as part of autofill history. BUG=36553 TEST=Login on a web site with password field (no autocomplete=off). Check "Web Data" file on disk to see password saved without user content. Review URL: http://codereview.chromium.org/855005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41490 0039d316-1c4b-4281-b951-d872f2087c98
* Rename RenderViewHostDelegate::FormFieldHistory to Autocomplete.jhawkins@chromium.org2010-03-111-4/+3
| | | | | | | | BUG=33032 TEST=none Review URL: http://codereview.chromium.org/815004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41294 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the remaining instance of the obsolete kFormAutofillEnabled.jhawkins@chromium.org2010-03-021-6/+1
| | | | | | | | BUG=36640 TEST=none Review URL: http://codereview.chromium.org/661393 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40451 0039d316-1c4b-4281-b951-d872f2087c98
* Rename FormFieldHistoryManager to AutocompleteHistory manager to better ↵jhawkins@chromium.org2010-03-021-0/+151
reflect its relation to the Autocomplete feature. BUG=33032 TEST=none Review URL: http://codereview.chromium.org/661323 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40408 0039d316-1c4b-4281-b951-d872f2087c98