| Index: chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabsConnection.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabsConnection.java b/chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabsConnection.java
|
| index f06e3a61af860f9fb7d425d3c683fa548ca1a90b..8d92fc3f2f64b0eb0926dde5e1d11d589a2aa22d 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabsConnection.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabsConnection.java
|
| @@ -371,13 +371,14 @@ public class CustomTabsConnection extends ICustomTabsService.Stub {
|
|
|
| @Override
|
| public boolean updateVisuals(final ICustomTabsCallback callback, Bundle bundle) {
|
| + // TODO(ianwen): add update logic for bottom bar items.
|
| final Bundle actionButtonBundle = IntentUtils.safeGetBundle(bundle,
|
| CustomTabsIntent.EXTRA_ACTION_BUTTON_BUNDLE);
|
| if (actionButtonBundle == null) return false;
|
|
|
| - final Bitmap bitmap = ActionButtonParams.tryParseBitmapFromBundle(mApplication,
|
| + final Bitmap bitmap = ButtonParams.tryParseBitmapFromBundle(mApplication,
|
| actionButtonBundle);
|
| - final String description = ActionButtonParams
|
| + final String description = ButtonParams
|
| .tryParseDescriptionFromBundle(actionButtonBundle);
|
| if (bitmap == null || description == null) return false;
|
|
|
|
|