diff options
Diffstat (limited to 'app/menus/menu_model.h')
-rw-r--r-- | app/menus/menu_model.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/menus/menu_model.h b/app/menus/menu_model.h index f14c8b5..50f2e54 100644 --- a/app/menus/menu_model.h +++ b/app/menus/menu_model.h @@ -20,7 +20,6 @@ class Font; namespace menus { class Accelerator; -class ButtonMenuItemModel; // An interface implemented by an object that provides the content of a menu. class MenuModel { @@ -33,7 +32,6 @@ class MenuModel { TYPE_CHECK, TYPE_RADIO, TYPE_SEPARATOR, - TYPE_BUTTON_ITEM, TYPE_SUBMENU }; @@ -87,9 +85,6 @@ class MenuModel { // is an icon, false otherwise. virtual bool GetIconAt(int index, SkBitmap* icon) const = 0; - // Returns the model for a menu item with a line of buttons at |index|. - virtual ButtonMenuItemModel* GetButtonMenuItemAt(int index) const = 0; - // Returns the enabled state of the item at the specified index. virtual bool IsEnabledAt(int index) const = 0; |