Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1675)

Unified Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 56643003: Start using FocusedNodedChanged to restartInput. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changes based on jamesr comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_widget_host_impl.cc
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
index 9e606f4d5ca2f56a1508a717aa31c1493a75988e..45e96956cd1984efc1ea7ee8c2292796c8b0e816 100644
--- a/content/browser/renderer_host/render_widget_host_impl.cc
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
@@ -1334,6 +1334,11 @@ void RenderWidgetHostImpl::ExtendSelectionAndDelete(
Send(new ViewMsg_ExtendSelectionAndDelete(GetRoutingID(), before, after));
}
+void RenderWidgetHostImpl::FocusedNodeChanged(bool is_editable_node) {
jamesr 2013/11/15 23:02:46 hmm, why do you need the trip to the base class? i
aurimas (slooooooooow) 2013/11/20 00:25:44 Done.
+ if (view_)
+ view_->FocusedNodeChanged(is_editable_node);
+}
+
gfx::Rect RenderWidgetHostImpl::GetRootWindowResizerRect() const {
return gfx::Rect();
}

Powered by Google App Engine
This is Rietveld 408576698