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

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

Issue 2801003004: Add "Paste as plain text" into text selection toolbar overflow (Closed)
Patch Set: check more styles Created 3 years, 8 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 cb0fece7126ac343693bfa2c70646689db4a2048..63d217996b9db48102dc657b3ae3fe8ccd3dfbb7 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
@@ -226,6 +226,11 @@ import java.util.UUID;
}
@Override
+ public void pasteAsPlainText() {
+ nativePasteAsPlainText(mNativeWebContentsAndroid);
+ }
+
+ @Override
public void replace(String word) {
nativeReplace(mNativeWebContentsAndroid, word);
}
@@ -600,6 +605,7 @@ import java.util.UUID;
private native void nativeCut(long nativeWebContentsAndroid);
private native void nativeCopy(long nativeWebContentsAndroid);
private native void nativePaste(long nativeWebContentsAndroid);
+ private native void nativePasteAsPlainText(long nativeWebContentsAndroid);
private native void nativeReplace(long nativeWebContentsAndroid, String word);
private native void nativeSelectAll(long nativeWebContentsAndroid);
private native void nativeCollapseSelection(long nativeWebContentsAndroid);

Powered by Google App Engine
This is Rietveld 408576698