Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2159)

Unified Diff: content/browser/web_contents/web_contents_android.cc

Issue 2864833002: Tapping handle shouldn't select misspelled word (Closed)
Patch Set: Fixed naming Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/web_contents/web_contents_android.h ('k') | content/child/assert_matching_enums.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « content/browser/web_contents/web_contents_android.h ('k') | content/child/assert_matching_enums.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698