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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/customtabs/CustomTabContentHandler.java

Issue 1557803002: [Custom Tabs] Implement Bottombar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make findbug happy Created 4 years, 11 months 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: 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 9a952d5234072fadafcc320967bb8475a9b0215d..9ff458738ff6943ee17a8ec80fdee397b948af41 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
@@ -38,8 +38,8 @@ public interface CustomTabContentHandler {
boolean shouldIgnoreIntent(Intent intent);
/**
- * Updates the content of custom action button shown on the toolbar.
+ * Finds the action button with the given id, and updates it with the new content.
* @return Whether the action button has been updated.
*/
- boolean updateActionButton(Bitmap bitmap, String description);
+ boolean updateCustomButton(int id, Bitmap bitmap, String description);
}

Powered by Google App Engine
This is Rietveld 408576698