diff options
author | George Mount <mount@google.com> | 2012-06-22 10:29:31 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-06-22 10:29:31 -0700 |
commit | ce1b7983ffbc5bfec86b01892f764326c033b701 (patch) | |
tree | b8715ae9d47179f93ed949c8f5dd5d75a9867648 /Source/WebKit/android/jni/WebViewCore.h | |
parent | 9febd865b2cb535f2a66d8709d976cfe8f6bd91a (diff) | |
parent | bc17d11c07d97392bb41b9d707726bec5c8cb64d (diff) | |
download | external_webkit-ce1b7983ffbc5bfec86b01892f764326c033b701.zip external_webkit-ce1b7983ffbc5bfec86b01892f764326c033b701.tar.gz external_webkit-ce1b7983ffbc5bfec86b01892f764326c033b701.tar.bz2 |
Merge "Remove updateTextfield for changing passwords."
Diffstat (limited to 'Source/WebKit/android/jni/WebViewCore.h')
-rw-r--r-- | Source/WebKit/android/jni/WebViewCore.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/WebKit/android/jni/WebViewCore.h b/Source/WebKit/android/jni/WebViewCore.h index def09d7..9d07e5f 100644 --- a/Source/WebKit/android/jni/WebViewCore.h +++ b/Source/WebKit/android/jni/WebViewCore.h @@ -202,13 +202,9 @@ namespace android { /** * Tell the java side to update the focused textfield * @param pointer Pointer to the node for the input field. - * @param changeToPassword If true, we are changing the textfield to - * a password field, and ignore the WTF::String - * @param text If changeToPassword is false, this is the new text that - * should go into the textfield. + * @param text This is the new text that should go into the textfield. */ - void updateTextfield(WebCore::Node* pointer, - bool changeToPassword, const WTF::String& text); + void updateTextfield(WebCore::Node* pointer, const WTF::String& text); /** * Tell the java side to update the current selection in the focused |