| Index: content/browser/renderer_host/ime_adapter_android.cc
|
| diff --git a/content/browser/renderer_host/ime_adapter_android.cc b/content/browser/renderer_host/ime_adapter_android.cc
|
| index f41ebefe1cea3797505f2f0a3b3c1ac8d0031872..92b3346747006bb3ccefa7a4477b55df70496d7a 100644
|
| --- a/content/browser/renderer_host/ime_adapter_android.cc
|
| +++ b/content/browser/renderer_host/ime_adapter_android.cc
|
| @@ -22,7 +22,6 @@
|
| #include "content/browser/renderer_host/render_view_host_impl.h"
|
| #include "content/browser/renderer_host/render_widget_host_impl.h"
|
| #include "content/browser/renderer_host/render_widget_host_view_android.h"
|
| -#include "content/common/frame_messages.h"
|
| #include "content/common/input_messages.h"
|
| #include "content/common/view_messages.h"
|
| #include "content/public/browser/browser_thread.h"
|
| @@ -264,8 +263,8 @@ void ImeAdapterAndroid::SetEditableSelectionOffsets(
|
| if (!rfh)
|
| return;
|
|
|
| - rfh->Send(new FrameMsg_SetEditableSelectionOffsets(rfh->GetRoutingID(),
|
| - start, end));
|
| + rfh->Send(new InputMsg_SetEditableSelectionOffsets(rfh->GetRoutingID(), start,
|
| + end));
|
| }
|
|
|
| void ImeAdapterAndroid::SetCharacterBounds(
|
|
|