| 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 6e6ef09ec54d44445b51e319f890d42f4536aee0..5241319fbd119b2663d25c65284b3381f8243586 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_base.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_base.cc
|
| @@ -488,13 +488,10 @@ void RenderWidgetHostViewBase::ImeCancelComposition() {
|
| void RenderWidgetHostViewBase::ImeCompositionRangeChanged(
|
| const gfx::Range& range,
|
| const std::vector<gfx::Rect>& character_bounds) {
|
| -// TODO(ekaramad): Use TextInputManager code paths for IME on other platforms.
|
| -#if !defined(OS_ANDROID)
|
| if (GetTextInputManager()) {
|
| GetTextInputManager()->ImeCompositionRangeChanged(this, range,
|
| character_bounds);
|
| }
|
| -#endif
|
| }
|
|
|
| TextInputManager* RenderWidgetHostViewBase::GetTextInputManager() {
|
|
|