| 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 3a1a11e203039e28b49277e21e54c1263fad6d7c..a01f35fb3937812c45e3f7ed97922311bbfcbaf7 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -941,19 +941,6 @@ void RenderViewHostImpl::OnWebkitPreferencesChanged() {
|
| updating_web_preferences_ = false;
|
| }
|
|
|
| -void RenderViewHostImpl::ClearFocusedElement() {
|
| - // TODO(ekaramad): We should move this to WebContents instead
|
| - // (https://crbug.com/675975).
|
| - if (delegate_)
|
| - delegate_->ClearFocusedElement();
|
| -}
|
| -
|
| -bool RenderViewHostImpl::IsFocusedElementEditable() {
|
| - // TODO(ekaramad): We should move this to WebContents instead
|
| - // (https://crbug.com/675975).
|
| - return delegate_ && delegate_->IsFocusedElementEditable();
|
| -}
|
| -
|
| void RenderViewHostImpl::DisableScrollbarsForThreshold(const gfx::Size& size) {
|
| Send(new ViewMsg_DisableScrollbarsForSmallWindows(GetRoutingID(), size));
|
| }
|
|
|