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 0fdcb4d459044b45db3f1dac9440ec46bb3470c0..17b18853165ca8ad7a26514154798a4d0bbc35f3 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.cc |
+++ b/content/browser/renderer_host/render_view_host_impl.cc |
@@ -1299,9 +1299,13 @@ void RenderViewHostImpl::OnMsgSelectionChanged(const string16& text, |
void RenderViewHostImpl::OnMsgSelectionBoundsChanged( |
const gfx::Rect& start_rect, |
- const gfx::Rect& end_rect) { |
- if (view_) |
- view_->SelectionBoundsChanged(start_rect, end_rect); |
+ WebKit::WebTextDirection start_direction, |
+ const gfx::Rect& end_rect, |
+ WebKit::WebTextDirection end_direction) { |
+ if (view_) { |
+ view_->SelectionBoundsChanged(start_rect, start_direction, |
+ end_rect, end_direction); |
+ } |
} |
void RenderViewHostImpl::OnMsgRouteCloseEvent() { |