| Index: ui/views/controls/button/menu_button.h
|
| diff --git a/ui/views/controls/button/menu_button.h b/ui/views/controls/button/menu_button.h
|
| index 857a31d29fd07bb9b0401f920cbc9821f8c7a4e6..9b13fd1cbff4d71055add7553fa37ea83d86e545 100644
|
| --- a/ui/views/controls/button/menu_button.h
|
| +++ b/ui/views/controls/button/menu_button.h
|
| @@ -37,9 +37,11 @@ class VIEWS_EXPORT MenuButton : public TextButton {
|
| bool show_menu_marker);
|
| virtual ~MenuButton();
|
|
|
| + bool show_menu_marker() const { return show_menu_marker_; }
|
| void set_menu_marker(const gfx::ImageSkia* menu_marker) {
|
| menu_marker_ = menu_marker;
|
| }
|
| + const gfx::ImageSkia* menu_marker() const { return menu_marker_; }
|
|
|
| const gfx::Point& menu_offset() const { return menu_offset_; }
|
| void set_menu_offset(int x, int y) { menu_offset_.SetPoint(x, y); }
|
|
|