diff options
author | Kristian Monsen <kristianm@google.com> | 2011-07-01 08:04:15 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-07-01 08:04:15 -0700 |
commit | a5b33abca20f49b6afd5874d1d2b07f6c37c22a5 (patch) | |
tree | 8a187a5f5fd89a8eb7c326a5e2a96a01f47b804f /Source/WebKit/android/jni/WebViewCore.cpp | |
parent | beb5d5b7abfe05ecd6dccd281a0885e7a9526286 (diff) | |
parent | 24111c7f4d848be14284815bb6c9a2218740a263 (diff) | |
download | external_webkit-a5b33abca20f49b6afd5874d1d2b07f6c37c22a5.zip external_webkit-a5b33abca20f49b6afd5874d1d2b07f6c37c22a5.tar.gz external_webkit-a5b33abca20f49b6afd5874d1d2b07f6c37c22a5.tar.bz2 |
Merge changes I899af0a4,I1d8b554a,Iefb91f0b
* changes:
Merge Chromium at r11.0.696.0: Compile fix, update include location
Merge Chromium at r11.0.696.0: Compile fixes in WebRequestContext.cc
Merge Chromium at r11.0.696.0: Just AutoFill => Autofill renaming
Diffstat (limited to 'Source/WebKit/android/jni/WebViewCore.cpp')
-rw-r--r-- | Source/WebKit/android/jni/WebViewCore.cpp | 6 |
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 |