summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-06-16 01:32:00 +0100
committerBen Murdoch <benm@google.com>2011-06-16 01:32:00 +0100
commit56f9a084a82178b60d5c69434fbc9e7f11fe8603 (patch)
treea7f65db63a9ecd0158c7d4f4847bec64787cac77
parent56793b97e67f4ec1e4191836ed00e0a4267fb598 (diff)
downloadexternal_webkit-56f9a084a82178b60d5c69434fbc9e7f11fe8603.zip
external_webkit-56f9a084a82178b60d5c69434fbc9e7f11fe8603.tar.gz
external_webkit-56f9a084a82178b60d5c69434fbc9e7f11fe8603.tar.bz2
Rmove unnecessary passing of unused parameter
Requires a change in external/chromium, see If349cd2ffd56b9f539d4ebdb8944964fc57289e5 Change-Id: I88d7c291ee1ffd1b1c413ffaf59acf5e4ae57c78
-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) {