| Index: content/browser/android/content_view_core_impl.cc
|
| diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
|
| index 965c21e95f0d959e9a013e6e76af0638e981d4d0..20562b16ef62afff933b368548a2edd5e9144054 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -1154,15 +1154,6 @@ void ContentViewCoreImpl::SelectBetweenCoordinates(
|
| gfx::PointF(x2 / dpi_scale(), y2 / dpi_scale()));
|
| }
|
|
|
| -void ContentViewCoreImpl::MoveCaret(JNIEnv* env,
|
| - const JavaParamRef<jobject>& obj,
|
| - jfloat x,
|
| - jfloat y) {
|
| - RenderWidgetHostViewAndroid* rwhv = GetRenderWidgetHostViewAndroid();
|
| - if (rwhv)
|
| - rwhv->MoveCaret(gfx::Point(x / dpi_scale_, y / dpi_scale_));
|
| -}
|
| -
|
| void ContentViewCoreImpl::DismissTextHandles(JNIEnv* env,
|
| const JavaParamRef<jobject>& obj) {
|
| RenderWidgetHostViewAndroid* rwhv = GetRenderWidgetHostViewAndroid();
|
|
|