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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java

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
Index: content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java b/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
index 33aa02b89c3c846f5aea69044a16920d70404df2..5d9f7277fddb1986fa3b2a4461ce50d3c932ffe1 100644
--- a/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
+++ b/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
@@ -568,8 +568,8 @@ import java.util.UUID;
}
@Override
- public void showContextMenuAtPoint(int x, int y) {
- nativeShowContextMenuAtPoint(mNativeWebContentsAndroid, x, y);
+ public void showContextMenuAtTouchHandle(int x, int y) {
+ nativeShowContextMenuAtTouchHandle(mNativeWebContentsAndroid, x, y);
}
@Override
@@ -671,7 +671,8 @@ import java.util.UUID;
String url, boolean isFavicon, int maxBitmapSize,
boolean bypassCache, ImageDownloadCallback callback);
private native void nativeDismissTextHandles(long nativeWebContentsAndroid);
- private native void nativeShowContextMenuAtPoint(long nativeWebContentsAndroid, int x, int y);
+ private native void nativeShowContextMenuAtTouchHandle(
+ long nativeWebContentsAndroid, int x, int y);
private native void nativeSetHasPersistentVideo(long nativeWebContentsAndroid, boolean value);
private native boolean nativeHasActiveEffectivelyFullscreenVideo(long nativeWebContentsAndroid);
private native EventForwarder nativeGetOrCreateEventForwarder(long nativeWebContentsAndroid);

Powered by Google App Engine
This is Rietveld 408576698