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

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

Issue 2883653002: Implement TouchSelectionEditing controls for OOPIF. (Closed)
Patch Set: ChildFrame client uses root view's animation defaults. Created 3 years, 7 months 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 95bb613c5a4c32ac46b5e6ffc5d74dd49650aca3..bf9523d3a7783abbefe634c71d6454e89e9d42d9 100644
--- a/content/browser/renderer_host/render_widget_host_impl.cc
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
@@ -1536,9 +1536,8 @@ void RenderWidgetHostImpl::SelectionChanged(const base::string16& text,
void RenderWidgetHostImpl::OnSelectionBoundsChanged(
const ViewHostMsg_SelectionBounds_Params& params) {
- if (view_) {
+ if (view_)
view_->SelectionBoundsChanged(params);
- }
}
void RenderWidgetHostImpl::OnSetNeedsBeginFrames(bool needs_begin_frames) {

Powered by Google App Engine
This is Rietveld 408576698