| Index: android_webview/native/aw_contents.cc
|
| diff --git a/android_webview/native/aw_contents.cc b/android_webview/native/aw_contents.cc
|
| index fdddf9f23fccfa20e67ca79ada7858264a0ca604..87cfee8a64274e002d15d834adcad1000fca3f3b 100644
|
| --- a/android_webview/native/aw_contents.cc
|
| +++ b/android_webview/native/aw_contents.cc
|
| @@ -792,10 +792,15 @@ base::android::ScopedJavaLocalRef<jbyteArray>
|
| reinterpret_cast<const uint8*>(der_string.data()), der_string.length());
|
| }
|
|
|
| -void AwContents::RequestNewHitTestDataAt(JNIEnv* env, jobject obj,
|
| - jint x, jint y) {
|
| +void AwContents::RequestNewHitTestDataAt(JNIEnv* env,
|
| + jobject obj,
|
| + jint x,
|
| + jint y,
|
| + jfloat touch_major_0,
|
| + jfloat touch_major_1) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - render_view_host_ext_->RequestNewHitTestDataAt(x, y);
|
| + render_view_host_ext_->RequestNewHitTestDataAt(
|
| + x, y, touch_major_0, touch_major_1);
|
| }
|
|
|
| void AwContents::UpdateLastHitTestData(JNIEnv* env, jobject obj) {
|
|
|