| 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 8d667f6523ed9b7a94b15732ae482d985b67ba1a..35b8e20f71a6979e8140e5793b92112ce41722a7 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -1061,8 +1061,9 @@ void ContentViewCoreImpl::ShowPressCancel(JNIEnv* env,
|
| void ContentViewCoreImpl::TapDown(JNIEnv* env, jobject obj,
|
| jlong time_ms,
|
| jfloat x, jfloat y) {
|
| - // TODO - once Blink accepts tap down events correctly, fire tap down
|
| - // here. See crbug.com/302752.
|
| + WebGestureEvent event = MakeGestureEvent(
|
| + WebInputEvent::GestureTapDown, time_ms, x, y);
|
| + SendGestureEvent(event);
|
| }
|
|
|
| void ContentViewCoreImpl::DoubleTap(JNIEnv* env, jobject obj, jlong time_ms,
|
|
|