Chromium Code Reviews| Index: ui/views/controls/menu/menu_delegate.h |
| diff --git a/ui/views/controls/menu/menu_delegate.h b/ui/views/controls/menu/menu_delegate.h |
| index b88182b0cb72a5b9331399abc72c4c00f24a7663..209fc89fc7c89baf1d2e83c7a23c63056883adba 100644 |
| --- a/ui/views/controls/menu/menu_delegate.h |
| +++ b/ui/views/controls/menu/menu_delegate.h |
| @@ -202,6 +202,12 @@ class VIEWS_EXPORT MenuDelegate { |
| // Invoked prior to a menu being hidden. |
| virtual void WillHideMenu(MenuItemView* menu); |
| + |
| + // Returns menu border. Applicable only to a root menu item. |
|
sky
2012/06/26 21:42:13
Creates and returns a new border for the menu, or
sky
2012/06/26 21:42:52
You should name these to match: CreateMenuBorder a
yefimt
2012/06/26 22:50:19
Done.
|
| + virtual Border* GetMenuBorder(); |
| + |
| + // Returns menu background. Applicable only to a root menu item. |
|
sky
2012/06/26 21:42:13
Creates and returns a new background for the menu,
yefimt
2012/06/26 22:50:19
Done.
|
| + virtual Background* GetMenuBackground(); |
| }; |
| } // namespace views |