Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb4d37cd authored by George Mount's avatar George Mount Committed by Android (Google) Code Review
Browse files

Merge "Remove password change from updateTextfield."

parents c4e9ac43 f360ae50
Loading
Loading
Loading
Loading
+3 −6
Original line number Original line Diff line number Diff line
@@ -2779,14 +2779,11 @@ public final class WebViewCore {
    }
    }


    // called by JNI
    // called by JNI
    private void updateTextfield(int ptr, boolean changeToPassword,
    private void updateTextfield(int ptr, String text, int textGeneration) {
            String text, int textGeneration) {
        if (mWebViewClassic != null) {
        if (mWebViewClassic != null) {
            Message msg = Message.obtain(mWebViewClassic.mPrivateHandler,
            Message.obtain(mWebViewClassic.mPrivateHandler,
                    WebViewClassic.UPDATE_TEXTFIELD_TEXT_MSG_ID, ptr,
                    WebViewClassic.UPDATE_TEXTFIELD_TEXT_MSG_ID, ptr,
                    textGeneration, text);
                    textGeneration, text).sendToTarget();
            msg.getData().putBoolean("password", changeToPassword);
            msg.sendToTarget();
        }
        }
    }
    }