summaryrefslogtreecommitdiffstats
path: root/WebKit/android/nav/CachedInput.cpp
Commit message (Collapse)AuthorAgeFilesLines
* clean up nav cache debuggingCary Clark2010-05-141-1/+1
| | | | | | | | | This adds additional content to the nav cache dump, and cleans up a few formatting problems. This has no effect on code that does not have nav cache debugging enabled. Change-Id: Ice2c4bb33138a8ddc96739d95ead58fbe328bfa8
* move CachedInput::init() to cppCary Clark2010-04-261-0/+5
| | | | | | | | | | | | | The implementation of init() calls bzero, which is defined in CachedPrefix.h. if CachedInput.h is included directly bzero may not be defined. It is always defined for CachedInput.cpp. http://b/2535696 enter the commit message for your changes. Lines starting Change-Id: I995498cd4bc611f0f1a45aadf27a1fd330e62410
* Bring up the IME after receiving a response from webkit.Leon Scroggins2010-01-111-1/+0
| | | | | | Fix for http://b/issue?id=2361658 Requires a change to frameworks/base.
* Request <label> info only when accessing a textfield.Leon Scroggins2010-01-071-1/+0
| | | | | | | Previously, we were storing the label info each time we build the navigation cache. Requires a change to frameworks/base.
* Store label information to be used for hint text.Leon Scroggins2010-01-061-5/+11
| | | | | | Fix for http://b/issue?id=2331526 Requires a change to frameworks/base.
* Show "Go" for the last textfield in a form.Leon Scroggins2009-12-081-0/+1
| | | | Fixes http://b/issue?id=2210152
* fix debugging outputCary Clark2009-12-071-1/+2
|
* move input-related fields out of CachedNode to expandCary Clark2009-12-041-0/+62
Some of the fields in CachedNode are relevant only to input fields and text areas. Move these into their own vector so that we can add more data without making all CacheNodes bigger. Remove CacheNode entries that are no longer used, or can be consolidated into the node type. Alphabetize some interfaces and implementations. Update the debugging output. part of http://b/2299660