| 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 2e9d72002bcb43bbaaa0aae3a07f987ba7646228..de64827ef6b11974e2fbf112bdf3756a77e82e12 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -1434,6 +1434,15 @@ bool RenderViewHostImpl::IsWaitingForUnloadACK() const {
|
| rvh_state_ == STATE_PENDING_SWAP_OUT;
|
| }
|
|
|
| +void RenderViewHostImpl::OnTextSurroundingSelectionResponse(
|
| + const base::string16& content,
|
| + size_t start_offset,
|
| + size_t end_offset) {
|
| + if (!view_)
|
| + return;
|
| + view_->OnTextSurroundingSelectionResponse(content, start_offset, end_offset);
|
| +}
|
| +
|
| void RenderViewHostImpl::ExitFullscreen() {
|
| RejectMouseLockOrUnlockIfNecessary();
|
| // Notify delegate_ and renderer of fullscreen state change.
|
|
|