| Index: chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabContentHandler.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabContentHandler.java b/chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabContentHandler.java
|
| index 3dd13b87de886ddb754325f26760449d5ff89501..9a952d5234072fadafcc320967bb8475a9b0215d 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabContentHandler.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabContentHandler.java
|
| @@ -5,6 +5,7 @@
|
| package org.chromium.chrome.browser.customtabs;
|
|
|
| import android.content.Intent;
|
| +import android.graphics.Bitmap;
|
| import android.os.IBinder;
|
|
|
| import org.chromium.content_public.browser.LoadUrlParams;
|
| @@ -35,4 +36,10 @@ public interface CustomTabContentHandler {
|
| * @return Whether the intent should be ignored.
|
| */
|
| boolean shouldIgnoreIntent(Intent intent);
|
| +
|
| + /**
|
| + * Updates the content of custom action button shown on the toolbar.
|
| + * @return Whether the action button has been updated.
|
| + */
|
| + boolean updateActionButton(Bitmap bitmap, String description);
|
| }
|
|
|