diff options
Diffstat (limited to 'WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp')
-rw-r--r-- | WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp b/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp index bc4ca05..96ee9f6 100644 --- a/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp +++ b/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp @@ -143,7 +143,7 @@ void WebAutoFill::fillFormFields(int queryId) webkit_glue::FormData* form = mQueryMap[queryId]; AutoFillQueryToUniqueIdMap::iterator iter = mUniqueIdMap.find(queryId); - ASSERT(iter != mSuggestionMap.end()); + ASSERT(iter != mUniqueIdMap.end()); mAutoFillManager->FillAutoFillFormData(queryId, *form, iter->second); mUniqueIdMap.erase(iter); } |