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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java

Issue 2407303005: Let embedder provide select action mode (Closed)
Patch Set: fixing tests Created 4 years, 1 month 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: android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java b/android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java
index 0192b2b0ccf9decc4284be2fd2977fe5ae3fa8cc..f109688a8977e63aa18d25d6893a344eaf113729 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContentViewClient.java
@@ -5,7 +5,6 @@
package org.chromium.android_webview;
import android.content.Context;
-import android.content.Intent;
import android.view.KeyEvent;
import org.chromium.content.browser.ContentViewClient;
@@ -55,19 +54,4 @@ public class AwContentViewClient extends ContentViewClient {
return super.shouldOverrideKeyEvent(event);
}
-
- @Override
- public boolean doesPerformProcessText() {
- return true;
- }
-
- @Override
- public void startProcessTextIntent(Intent intent) {
- mAwContents.startProcessTextIntent(intent);
- }
-
- @Override
- public boolean isSelectActionModeAllowed(int actionModeItem) {
- return mAwContents.isSelectActionModeAllowed(actionModeItem);
- }
}

Powered by Google App Engine
This is Rietveld 408576698