diff options
author | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-04 14:50:44 +0000 |
---|---|---|
committer | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-04 14:50:44 +0000 |
commit | 65ec8db19f04ae27c2b110ab7b267589a7cf2550 (patch) | |
tree | a82287ed72955911dc53c682048d26c1e844419e /chrome/renderer/autofill/autofill_agent.h | |
parent | d03e37865c8f5e2d25d968d19c2e5ee3eeb63b7f (diff) | |
download | chromium_src-65ec8db19f04ae27c2b110ab7b267589a7cf2550.zip chromium_src-65ec8db19f04ae27c2b110ab7b267589a7cf2550.tar.gz chromium_src-65ec8db19f04ae27c2b110ab7b267589a7cf2550.tar.bz2 |
Updating PageClickTracker to Notify listeners When Text Input Loses Focus.
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
Diffstat (limited to 'chrome/renderer/autofill/autofill_agent.h')
-rw-r--r-- | chrome/renderer/autofill/autofill_agent.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/renderer/autofill/autofill_agent.h b/chrome/renderer/autofill/autofill_agent.h index b7e4fb4..61c36e6 100644 --- a/chrome/renderer/autofill/autofill_agent.h +++ b/chrome/renderer/autofill/autofill_agent.h @@ -68,6 +68,7 @@ class AutofillAgent : public content::RenderViewObserver, virtual bool InputElementClicked(const WebKit::WebInputElement& element, bool was_focused, bool is_focused) OVERRIDE; + virtual bool InputElementLostFocus() OVERRIDE; // WebKit::WebAutofillClient: virtual void didAcceptAutofillSuggestion(const WebKit::WebNode& node, |