| Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| index cb86012f4d29646ccb0a0b7ef3909360290d9518..4d564a1791b9e21bc0549ba6856388e90c6a3132 100644
|
| --- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| @@ -1079,6 +1079,11 @@ void ChromeClientImpl::DidAssociateFormControlsAfterLoad(LocalFrame* frame) {
|
| webframe->AutofillClient()->DidAssociateFormControlsDynamically();
|
| }
|
|
|
| +void ChromeClientImpl::DidCancelCompositionOnSelectionChange() {
|
| + if (web_view_->Client())
|
| + web_view_->Client()->DidCancelCompositionOnSelectionChange();
|
| +}
|
| +
|
| void ChromeClientImpl::ShowVirtualKeyboardOnElementFocus(LocalFrame& frame) {
|
| WebLocalFrameImpl::FromFrame(frame.LocalFrameRoot())
|
| ->FrameWidget()
|
|
|