| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
|
| index 8a81f8fbafc9c54b97cbb6a01ab36936598c2101..a95acdd44f5a204d02181d337bc84154419375a0 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
|
| @@ -106,6 +106,22 @@ public class ContentViewClient {
|
| }
|
|
|
| /**
|
| + * If this returns {@code true} the text processing intents should be forwarded to {@link
|
| + * startProcessTextIntent(Intent)}, otherwise these intents should be sent by WindowAndroid by
|
| + * default.
|
| + * @return {@code true} iff this {@link ContentViewClient} wants to send the processing intents
|
| + * and override the default intent behavior.
|
| + */
|
| + public boolean doesPerformProcessText() {
|
| + return false;
|
| + }
|
| +
|
| + /**
|
| + * Send the intent to process the current selected text.
|
| + */
|
| + public void startProcessTextIntent(Intent intent) {}
|
| +
|
| + /**
|
| * Called when a new content intent is requested to be started.
|
| */
|
| public void onStartContentIntent(Context context, String intentUrl) {
|
|
|