| Index: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| index c0e69a2d0a71697b45fc3edcefb24b9db2f28d79..8443ca18922cd6adfe1cd5bab82363fd9345506d 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| @@ -471,12 +471,6 @@ void WebFrameWidgetImpl::setFocus(bool enable) {
|
| if (focusedFrame) {
|
| // Finish an ongoing composition to delete the composition node.
|
| if (focusedFrame->inputMethodController().hasComposition()) {
|
| - WebAutofillClient* autofillClient =
|
| - WebLocalFrameImpl::fromFrame(focusedFrame)->autofillClient();
|
| -
|
| - if (autofillClient)
|
| - autofillClient->setIgnoreTextChanges(true);
|
| -
|
| // TODO(xiaochengh): The use of
|
| // updateStyleAndLayoutIgnorePendingStylesheets needs to be audited.
|
| // See http://crbug.com/590369 for more details.
|
| @@ -485,9 +479,6 @@ void WebFrameWidgetImpl::setFocus(bool enable) {
|
|
|
| focusedFrame->inputMethodController().finishComposingText(
|
| InputMethodController::KeepSelection);
|
| -
|
| - if (autofillClient)
|
| - autofillClient->setIgnoreTextChanges(false);
|
| }
|
| m_imeAcceptEvents = false;
|
| }
|
|
|