Fix build

Change-Id: I3e1708a9e41155b9b00e0365e4392ae66202fdbb
This commit is contained in:
Alan Viverette
2015-12-15 17:16:33 -05:00
parent 4f7b035e34
commit db08925a8f

View File

@@ -61,9 +61,6 @@ final class CascadingMenuPopup extends MenuPopup implements MenuPresenter, OnKey
*/
private static final int SUBMENU_TIMEOUT_MS = 200;
/** List of menus that were added before this popup was shown. */
private final LinkedList<MenuBuilder> mPendingMenus = new LinkedList<MenuBuilder>;
private final Context mContext;
private final int mMenuMaxWidth;
private final int mPopupStyleAttr;
@@ -71,6 +68,9 @@ final class CascadingMenuPopup extends MenuPopup implements MenuPresenter, OnKey
private final boolean mOverflowOnly;
private final Handler mSubMenuHoverHandler;
/** List of menus that were added before this popup was shown. */
private final List<MenuBuilder> mPendingMenus = new LinkedList<>();
/**
* List of open menus. The first item is the root menu and each
* subsequent item is a direct submenu of the previous item.