| Index: third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| index 1200cc8241da4dc305d26679dca5fb683ca60949..b7f29e94ed154070d6bca98ea0337b905ede8f56 100644
|
| --- a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| @@ -232,6 +232,16 @@ WebPagePopup* WebViewFrameWidget::pagePopup() const
|
| return m_webView->pagePopup();
|
| }
|
|
|
| +bool WebViewFrameWidget::getCompositionCharacterBounds(WebVector<WebRect>& bounds)
|
| +{
|
| + return m_webView->getCompositionCharacterBounds(bounds);
|
| +}
|
| +
|
| +void WebViewFrameWidget::applyReplacementRange(const WebRange& range)
|
| +{
|
| + m_webView->applyReplacementRange(range);
|
| +}
|
| +
|
| void WebViewFrameWidget::updateTopControlsState(WebTopControlsState constraints, WebTopControlsState current, bool animate)
|
| {
|
| return m_webView->updateTopControlsState(constraints, current, animate);
|
|
|