| Index: content/browser/renderer_host/render_widget_host_view_base.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_base.cc b/content/browser/renderer_host/render_widget_host_view_base.cc
|
| index 8c862b6e119e164212caf93455d5aba9d2f0f991..ffa3605ff4515c7cd831e76b895ed342f3574ed0 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_base.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_base.cc
|
| @@ -119,9 +119,12 @@ float RenderWidgetHostViewBase::GetBottomControlsHeight() const {
|
|
|
| void RenderWidgetHostViewBase::SelectionChanged(const base::string16& text,
|
| size_t offset,
|
| - const gfx::Range& range) {
|
| - if (GetTextInputManager())
|
| - GetTextInputManager()->SelectionChanged(this, text, offset, range);
|
| + const gfx::Range& range,
|
| + bool user_initiated) {
|
| + if (GetTextInputManager()) {
|
| + GetTextInputManager()->SelectionChanged(this, text, offset, range,
|
| + user_initiated);
|
| + }
|
| }
|
|
|
| gfx::Size RenderWidgetHostViewBase::GetRequestedRendererSize() const {
|
|
|