| 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 0c852a3ef8436b47c5f37c577e5a6feaf345df1b..3721d3640f0e478e0210226159baa0b6f6cc13a0 100644
|
| --- a/content/browser/renderer_host/ime_adapter_android.cc
|
| +++ b/content/browser/renderer_host/ime_adapter_android.cc
|
| @@ -283,6 +283,17 @@ void ImeAdapterAndroid::DeleteSurroundingText(JNIEnv*,
|
| rfh->DeleteSurroundingText(before, after);
|
| }
|
|
|
| +void ImeAdapterAndroid::DeleteSurroundingTextInCodePoints(
|
| + JNIEnv*,
|
| + const JavaParamRef<jobject>&,
|
| + int before,
|
| + int after) {
|
| + RenderFrameHostImpl* rfh =
|
| + static_cast<RenderFrameHostImpl*>(GetFocusedFrame());
|
| + if (rfh)
|
| + rfh->DeleteSurroundingTextInCodePoints(before, after);
|
| +}
|
| +
|
| bool ImeAdapterAndroid::RequestTextInputStateUpdate(
|
| JNIEnv* env,
|
| const JavaParamRef<jobject>&) {
|
|
|