| Index: third_party/WebKit/Source/web/WebViewImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| index 24a1fbf205c1978b194ad8dde095c364ed58b9e5..2476a725c4a1fe16661b26dfb56c5a218db46e13 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| @@ -2297,12 +2297,6 @@ void WebViewImpl::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.
|
| @@ -2311,9 +2305,6 @@ void WebViewImpl::setFocus(bool enable) {
|
|
|
| focusedFrame->inputMethodController().finishComposingText(
|
| InputMethodController::KeepSelection);
|
| -
|
| - if (autofillClient)
|
| - autofillClient->setIgnoreTextChanges(false);
|
| }
|
| m_imeAcceptEvents = false;
|
| }
|
|
|