| 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 7818e594fa567218a83279f01f39b6a54c35b99d..fccd8773e73df92a6c372628122459cc17deea1a 100644 | 
| --- a/content/browser/renderer_host/ime_adapter_android.cc | 
| +++ b/content/browser/renderer_host/ime_adapter_android.cc | 
| @@ -13,7 +13,6 @@ | 
| #include "base/time.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/input_messages.h" | 
| #include "content/common/view_messages.h" | 
| #include "content/public/browser/native_web_keyboard_event.h" | 
| #include "jni/ImeAdapter_jni.h" | 
| @@ -228,7 +227,7 @@ void ImeAdapterAndroid::Unselect(JNIEnv* env, jobject) { | 
| if (!rwhi) | 
| return; | 
|  | 
| -  rwhi->Send(new InputMsg_Unselect(rwhi->GetRoutingID())); | 
| +  rwhi->Unselect(); | 
| } | 
|  | 
| void ImeAdapterAndroid::SelectAll(JNIEnv* env, jobject) { | 
| @@ -237,7 +236,7 @@ void ImeAdapterAndroid::SelectAll(JNIEnv* env, jobject) { | 
| if (!rwhi) | 
| return; | 
|  | 
| -  rwhi->Send(new InputMsg_SelectAll(rwhi->GetRoutingID())); | 
| +  rwhi->SelectAll(); | 
| } | 
|  | 
| void ImeAdapterAndroid::Cut(JNIEnv* env, jobject) { | 
| @@ -246,7 +245,7 @@ void ImeAdapterAndroid::Cut(JNIEnv* env, jobject) { | 
| if (!rwhi) | 
| return; | 
|  | 
| -  rwhi->Send(new InputMsg_Cut(rwhi->GetRoutingID())); | 
| +  rwhi->Cut(); | 
| } | 
|  | 
| void ImeAdapterAndroid::Copy(JNIEnv* env, jobject) { | 
| @@ -255,7 +254,7 @@ void ImeAdapterAndroid::Copy(JNIEnv* env, jobject) { | 
| if (!rwhi) | 
| return; | 
|  | 
| -  rwhi->Send(new InputMsg_Copy(rwhi->GetRoutingID())); | 
| +  rwhi->Copy(); | 
| } | 
|  | 
| void ImeAdapterAndroid::Paste(JNIEnv* env, jobject) { | 
| @@ -264,7 +263,7 @@ void ImeAdapterAndroid::Paste(JNIEnv* env, jobject) { | 
| if (!rwhi) | 
| return; | 
|  | 
| -  rwhi->Send(new InputMsg_Paste(rwhi->GetRoutingID())); | 
| +  rwhi->Paste(); | 
| } | 
|  | 
| void ImeAdapterAndroid::ResetImeAdapter(JNIEnv* env, jobject) { | 
|  |