| Index: chrome/android/java/src/org/chromium/chrome/browser/appmenu/AppMenuPropertiesDelegate.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/appmenu/AppMenuPropertiesDelegate.java b/chrome/android/java/src/org/chromium/chrome/browser/appmenu/AppMenuPropertiesDelegate.java
|
| index e62268a64df8432b13096265bb960f39eab1b2f3..05a4d78b023438861f5dbcfb4246013fb7c8b037 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/appmenu/AppMenuPropertiesDelegate.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/appmenu/AppMenuPropertiesDelegate.java
|
| @@ -307,6 +307,15 @@ public class AppMenuPropertiesDelegate {
|
| }
|
|
|
| /**
|
| + * Determines whether the header should be shown based on the maximum available menu height.
|
| + * @param maxMenuHeight The maximum available height for the menu to draw.
|
| + * @return Whether the footer, as specified in {@link #getFooterResourceId()}, should be shown.
|
| + */
|
| + public boolean shouldShowFooter(int maxMenuHeight) {
|
| + return true;
|
| + }
|
| +
|
| + /**
|
| * Updates the bookmarks bridge.
|
| *
|
| * @param bookmarkBridge The bookmarks bridge.
|
|
|