| Index: android_webview/java/src/org/chromium/android_webview/AwContentsClient.java
|
| diff --git a/android_webview/java/src/org/chromium/android_webview/AwContentsClient.java b/android_webview/java/src/org/chromium/android_webview/AwContentsClient.java
|
| index 153cc820ab4526c1e4fbcb43d5e34065f75baf4b..0108c8b518de749b7d65eb36fcf25828e83d9c6e 100644
|
| --- a/android_webview/java/src/org/chromium/android_webview/AwContentsClient.java
|
| +++ b/android_webview/java/src/org/chromium/android_webview/AwContentsClient.java
|
| @@ -373,10 +373,19 @@ public abstract class AwContentsClient {
|
| */
|
| public abstract void onNewPicture(Picture picture);
|
|
|
| - public abstract WebActionMode startActionMode(
|
| - View view, ActionHandler actionHandler, boolean floating);
|
| + /**
|
| + * TODO(jdduke): Remove when all embedders have been updated.
|
| + */
|
| + public WebActionMode startActionMode(View view, ActionHandler actionHandler, boolean floating) {
|
| + return null;
|
| + }
|
|
|
| - public abstract boolean supportsFloatingActionMode();
|
| + /**
|
| + * TODO(jdduke): Remove when all embedders have been updated.
|
| + */
|
| + public boolean supportsFloatingActionMode() {
|
| + return false;
|
| + }
|
|
|
| public void updateTitle(String title, boolean forceNotification) {
|
| if (!forceNotification && TextUtils.equals(mTitle, title)) return;
|
|
|