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

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

Issue 2883653002: Implement TouchSelectionEditing controls for OOPIF. (Closed)
Patch Set: Rebase to master@{#474649}. 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 ac87fb69e43d18e5296ac15941fbc39d51eb6e05..0885a2e88e61f24563b3b205e1384928e34255cc 100644
--- a/content/browser/renderer_host/render_widget_host_impl.cc
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
@@ -1533,9 +1533,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