summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/autofill_helper.h
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-14 22:23:36 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-14 22:23:36 +0000
commita5e84bda360798580ed0eb6f27dc0342999c9675 (patch)
treee58b66689367554f7430084d760428fbe6127201 /chrome/renderer/autofill_helper.h
parentb05474d73e1f33770648ac9e11d58c6393caa82d (diff)
downloadchromium_src-a5e84bda360798580ed0eb6f27dc0342999c9675.zip
chromium_src-a5e84bda360798580ed0eb6f27dc0342999c9675.tar.gz
chromium_src-a5e84bda360798580ed0eb6f27dc0342999c9675.tar.bz2
Clean up RenderViewHostDelegate::AutoFill interface -- remove |value| and |label| parameters from FillAutoFillFormData()
BUG=none TEST=it compiles Review URL: http://codereview.chromium.org/3319006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/autofill_helper.h')
-rw-r--r--chrome/renderer/autofill_helper.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/chrome/renderer/autofill_helper.h b/chrome/renderer/autofill_helper.h
index d4940d0..c859725 100644
--- a/chrome/renderer/autofill_helper.h
+++ b/chrome/renderer/autofill_helper.h
@@ -33,11 +33,9 @@ class AutoFillHelper : public PageClickListener {
// Queries the browser for Autocomplete and AutoFill suggestions for the given
// |node|.
- void QueryAutoFillSuggestions(const WebKit::WebNode& node,
- const WebKit::WebString& name,
- const WebKit::WebString& value);
+ void QueryAutoFillSuggestions(const WebKit::WebNode& node);
- // Removes the Autocomplete suggestion |value| for the field names |name|.
+ // Removes the Autocomplete suggestion |value| for the field named |name|.
void RemoveAutocompleteSuggestion(const WebKit::WebString& name,
const WebKit::WebString& value);
@@ -56,14 +54,11 @@ class AutoFillHelper : public PageClickListener {
// happens when the user hovers over an suggestion or navigates the popup with
// the arrow keys).
void DidSelectAutoFillSuggestion(const WebKit::WebNode& node,
- const WebKit::WebString& value,
- const WebKit::WebString& label,
int unique_id);
// Called by Webkit when the user has accepted a suggestion in the popup.
void DidAcceptAutoFillSuggestion(const WebKit::WebNode& node,
const WebKit::WebString& value,
- const WebKit::WebString& label,
int unique_id,
unsigned index);
@@ -121,8 +116,6 @@ class AutoFillHelper : public PageClickListener {
// profile's unique ID. |action| specifies whether to Fill or Preview the
// values returned from the AutoFillManager.
void QueryAutoFillFormData(const WebKit::WebNode& node,
- const WebKit::WebString& value,
- const WebKit::WebString& label,
int unique_id,
AutoFillAction action);