summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-06-15 17:50:59 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-06-15 17:50:59 -0700
commitc76dcf83460116fb39cfb33637de964cd171b64f (patch)
tree289e27068162c84116d8bbd88fd3178e50306e4b
parenta61d17ffd296786f61755ec29a4fcff1223ba88f (diff)
parent56f9a084a82178b60d5c69434fbc9e7f11fe8603 (diff)
downloadexternal_webkit-c76dcf83460116fb39cfb33637de964cd171b64f.zip
external_webkit-c76dcf83460116fb39cfb33637de964cd171b64f.tar.gz
external_webkit-c76dcf83460116fb39cfb33637de964cd171b64f.tar.bz2
Merge "Rmove unnecessary passing of unused parameter"
-rw-r--r--Source/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp b/Source/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp
index 961497b..1fdb671 100644
--- a/Source/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp
+++ b/Source/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp
@@ -166,7 +166,7 @@ void WebAutoFill::formFieldFocused(WebCore::HTMLFormControlElement* formFieldEle
mFormManager->FindFormWithFormControlElement(formFieldElement, FormManager::REQUIRE_AUTOCOMPLETE, form);
mQueryMap[mQueryId] = new FormDataAndField(form, formField);
- bool suggestions = mAutoFillManager->OnQueryFormFieldAutoFillWrapper(0, *form, *formField); // First param not used on Android
+ bool suggestions = mAutoFillManager->OnQueryFormFieldAutoFillWrapper(*form, *formField);
mQueryId++;
if (!suggestions) {