summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp
diff options
context:
space:
mode:
authorPatrick Scott <phanna@android.com>2010-10-21 14:51:28 -0400
committerPatrick Scott <phanna@android.com>2010-10-21 14:51:28 -0400
commit0ed5f4b1c2410265cfbba9f377e79a044dcd8744 (patch)
tree7843480398605a09f93b6012411c8148efb7d1a9 /WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp
parentf6c40294adb5fce93668a0e92e8731e21752a1df (diff)
downloadexternal_webkit-0ed5f4b1c2410265cfbba9f377e79a044dcd8744.zip
external_webkit-0ed5f4b1c2410265cfbba9f377e79a044dcd8744.tar.gz
external_webkit-0ed5f4b1c2410265cfbba9f377e79a044dcd8744.tar.bz2
Fix debug statements.
Change-Id: Id37bf0a8b5864fea2490bd2dc5d4a1f52bc56c1d
Diffstat (limited to 'WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp')
-rw-r--r--WebKit/android/WebCoreSupport/autofill/WebAutoFill.cpp2
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);
}