summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/jni/WebViewCore.cpp
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2011-06-27 10:47:13 +0100
committerKristian Monsen <kristianm@google.com>2011-06-29 15:12:47 +0100
commita5b05f64bda3dea3ba23e77e9eb2ef59812cdc86 (patch)
treebcca417ac5437d5c3376556e0513fafe3539be4b /Source/WebKit/android/jni/WebViewCore.cpp
parentc19571f3ec3bec025fa05e8d81ffd1998324e844 (diff)
downloadexternal_webkit-a5b05f64bda3dea3ba23e77e9eb2ef59812cdc86.zip
external_webkit-a5b05f64bda3dea3ba23e77e9eb2ef59812cdc86.tar.gz
external_webkit-a5b05f64bda3dea3ba23e77e9eb2ef59812cdc86.tar.bz2
Merge Chromium at r11.0.696.0: Just AutoFill => Autofill renaming
Change-Id: Iefb91f0b784c26b503125017ae3582a28e7d530d
Diffstat (limited to 'Source/WebKit/android/jni/WebViewCore.cpp')
-rw-r--r--Source/WebKit/android/jni/WebViewCore.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebKit/android/jni/WebViewCore.cpp b/Source/WebKit/android/jni/WebViewCore.cpp
index 96045c6..966a540 100644
--- a/Source/WebKit/android/jni/WebViewCore.cpp
+++ b/Source/WebKit/android/jni/WebViewCore.cpp
@@ -117,7 +117,7 @@
#include "WebFrameView.h"
#include "WindowsKeyboardCodes.h"
#include "android_graphics.h"
-#include "autofill/WebAutoFill.h"
+#include "autofill/WebAutofill.h"
#include "htmlediting.h"
#include "markup.h"
@@ -3279,7 +3279,7 @@ bool WebViewCore::handleMouseClick(WebCore::Frame* framePtr, WebCore::Node* node
#if ENABLE(WEB_AUTOFILL)
if (renderer->isTextField()) {
EditorClientAndroid* editorC = static_cast<EditorClientAndroid*>(framePtr->page()->editorClient());
- WebAutoFill* autoFill = editorC->getAutoFill();
+ WebAutofill* autoFill = editorC->getAutofill();
autoFill->formFieldFocused(static_cast<HTMLFormControlElement*>(focusNode));
}
#endif
@@ -4566,7 +4566,7 @@ static void AutoFillForm(JNIEnv* env, jobject obj, jint queryId)
WebCore::Frame* frame = viewImpl->mainFrame();
if (frame) {
EditorClientAndroid* editorC = static_cast<EditorClientAndroid*>(frame->page()->editorClient());
- WebAutoFill* autoFill = editorC->getAutoFill();
+ WebAutofill* autoFill = editorC->getAutofill();
autoFill->fillFormFields(queryId);
}
#endif