| Index: content/browser/web_contents/web_contents_android.cc
|
| diff --git a/content/browser/web_contents/web_contents_android.cc b/content/browser/web_contents/web_contents_android.cc
|
| index cbc8ff4da96d6301b118a5adfcd98ba66c950a87..90990f3c186b0aaa2ccaa32b3de84229678b2f08 100644
|
| --- a/content/browser/web_contents/web_contents_android.cc
|
| +++ b/content/browser/web_contents/web_contents_android.cc
|
| @@ -646,14 +646,14 @@ void WebContentsAndroid::DismissTextHandles(
|
| view->DismissTextHandles();
|
| }
|
|
|
| -void WebContentsAndroid::ShowContextMenuAtPoint(
|
| +void WebContentsAndroid::ShowContextMenuAtTouchHandle(
|
| JNIEnv* env,
|
| const base::android::JavaParamRef<jobject>& obj,
|
| int x,
|
| int y) {
|
| RenderWidgetHostViewAndroid* view = GetRenderWidgetHostViewAndroid();
|
| if (view)
|
| - view->ShowContextMenuAtPoint(gfx::Point(x, y));
|
| + view->ShowContextMenuAtTouchHandle(gfx::Point(x, y));
|
| }
|
|
|
| void WebContentsAndroid::SetHasPersistentVideo(
|
|
|