| 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);
|
| - }
|
| }
|
|
|