summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/page_click_tracker.cc
Commit message (Collapse)AuthorAgeFilesLines
* Open autofill popup when clicking on any text field input element, not just ↵keishi@chromium.org2012-05-161-8/+7
| | | | | | | | | | | | input type=text BUG=126623 TEST= Review URL: https://chromiumcodereview.appspot.com/10332065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137358 0039d316-1c4b-4281-b951-d872f2087c98
* Update includes to new header locations.abarth@chromium.org2011-12-031-1/+1
| | | | | | | TBR=darin Review URL: http://codereview.chromium.org/8784004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112826 0039d316-1c4b-4281-b951-d872f2087c98
* Updating PageClickTracker to Notify listeners When Text Input Loses Focus.csharp@chromium.org2011-11-041-3/+28
| | | | | | | | | | | | | Changing PageClickTracker and PageClickListener to give listeners the option to be informed when a text input element loses focus after gaining it. This will be used by the new autofill UI code once it is moved out of WebKit. BUG=51644 TEST= Review URL: http://codereview.chromium.org/8351009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108649 0039d316-1c4b-4281-b951-d872f2087c98
* Get rid of view_messages.h includes in chrome\renderer.jam@chromium.org2011-10-151-16/+0
| | | | | | | BUG=98716 Review URL: http://codereview.chromium.org/8294007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105666 0039d316-1c4b-4281-b951-d872f2087c98
* Make RenderView inherit from content::RenderView, and add missing functions ↵jam@chromium.org2011-10-101-16/+4
| | | | | | | | | to the interface. In a future change I'll rename RenderView to RenderViewImpl. BUG=98716 Review URL: http://codereview.chromium.org/8201029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104727 0039d316-1c4b-4281-b951-d872f2087c98
* Move RenderViewObserver and RenderViewObserverTracker to ↵jam@chromium.org2011-10-031-1/+1
| | | | | | | | | content\public\renderer and put them in the content namespace. BUG=98716 Review URL: http://codereview.chromium.org/8124001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103758 0039d316-1c4b-4281-b951-d872f2087c98
* In PageClickTracker:dpanpong@google.com2011-05-261-12/+30
| | | | | | | | | | | | | | As soon as we start to handle an event, filter against the type of nodes we care about (only text fields), rather than waiting to filter in DidHandleMouseEvent(). Otherwise, PageClickTracker could hold a reference to the node until the next mouse event, potentially keeping the node alive for longer than necessary. Review URL: http://codereview.chromium.org/7064012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86759 0039d316-1c4b-4281-b951-d872f2087c98
* Move some more renderer messages to content. Also move a couple of files ↵jam@chromium.org2011-03-221-0/+1
| | | | | | | | | which should have been moved.TBR=tsepez R=sky@chromium.org,*,jam@chromium.org,jcivelli@chromium.org,phajdan.jr@chromium.org,darin@chromium.org,brettw@chromium.org,ben@chromium.org Review URL: http://codereview.chromium.org/6718020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78957 0039d316-1c4b-4281-b951-d872f2087c98
* Move a bunch of remaining files from chrome\renderer to content\renderer.jam@chromium.org2011-03-191-1/+1
| | | | | | | TBR=avi Review URL: http://codereview.chromium.org/6688047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78781 0039d316-1c4b-4281-b951-d872f2087c98
* Remove includes of message headers in headers.jam@chromium.org2011-02-091-0/+1
| | | | | | Review URL: http://codereview.chromium.org/6458004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74257 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit DEPS past WebKit move. Update gyp files and include paths to ↵abarth@chromium.org2011-01-171-6/+6
| | | | | | reflect the move. Consolidate how we DEPS in WebKit source files. Cross fingers. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71585 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce RenderView::Observer interface so that RenderView doesn't have to ↵jam@chromium.org2011-01-151-24/+35
| | | | | | | | know about the details of every feature. Observers get to filter and send IPC messages, and basic notifications of frame related events.I've moved over AutoFill related classes, and also made AutoFillManager implement the new WebAutoFillClient interface. For the rest of the classes, they implement the interface just for message filtering. Review URL: http://codereview.chromium.org/6151011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71517 0039d316-1c4b-4281-b951-d872f2087c98
* Added check in page click tracker to ensure events passed in are mouse eventscdn@chromium.org2010-10-291-1/+3
| | | | | | | | | BUG=61255 TEST=None Review URL: http://codereview.chromium.org/4120011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64510 0039d316-1c4b-4281-b951-d872f2087c98
* Adding a class to track when a node in a page gets clicked.jcivelli@chromium.org2010-09-051-0/+127
This is going to be used by the password/form autofill to trigger the suggestion popup, as part of the effort in moving that code out of WebKit. BUG=None TEST=Run unit-tests. Review URL: http://codereview.chromium.org/3090007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58597 0039d316-1c4b-4281-b951-d872f2087c98