| Index: chrome/browser/ui/views/toolbar/toolbar_button.h
|
| diff --git a/chrome/browser/ui/views/toolbar/toolbar_button.h b/chrome/browser/ui/views/toolbar/toolbar_button.h
|
| index f607a446475015b860253cf05b3bb0866b107a9d..d2103d766c121cd5938e0a74d9bae17c22386766 100644
|
| --- a/chrome/browser/ui/views/toolbar/toolbar_button.h
|
| +++ b/chrome/browser/ui/views/toolbar/toolbar_button.h
|
| @@ -66,6 +66,7 @@ class ToolbarButton : public views::LabelButton,
|
| // views::LabelButton:
|
| bool ShouldEnterPushedState(const ui::Event& event) override;
|
| void NotifyClick(const ui::Event& event) override;
|
| + void NotifyReleasedWithoutClick(const ui::Event& event) override;
|
|
|
| // Returns if menu should be shown. Override this to change default behavior.
|
| virtual bool ShouldShowMenu();
|
| @@ -90,7 +91,7 @@ class ToolbarButton : public views::LabelButton,
|
| // Indicates if menu is currently showing.
|
| bool menu_showing_;
|
|
|
| - // Y position of mouse when left mouse button is pressed
|
| + // Y position of mouse when left mouse button is pressed.
|
| int y_position_on_lbuttondown_;
|
|
|
| // Menu runner to display drop down menu.
|
|
|