| Index: content/browser/renderer_host/render_view_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
|
| index 24f92227cb71af5f9d3d4d4925aac292e55f7403..b8f42cc91521f0bd53b946182771411a0b71d4d8 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -1448,6 +1448,15 @@ bool RenderViewHostImpl::IsWaitingForUnloadACK() const {
|
| rvh_state_ == STATE_PENDING_SWAP_OUT;
|
| }
|
|
|
| +void RenderViewHostImpl::OnTextSurroundingSelectionResponse(
|
| + const base::string16& content,
|
| + unsigned start_offset,
|
| + unsigned end_offset) {
|
| + if (!view_)
|
| + return;
|
| + view_->OnTextSurroundingSelectionResponse(content, start_offset, end_offset);
|
| +}
|
| +
|
| void RenderViewHostImpl::ExitFullscreen() {
|
| RejectMouseLockOrUnlockIfNecessary();
|
| // Notify delegate_ and renderer of fullscreen state change.
|
|
|