| Index: chrome/browser/ui/views/browser_actions_container.cc
|
| diff --git a/chrome/browser/ui/views/browser_actions_container.cc b/chrome/browser/ui/views/browser_actions_container.cc
|
| index 24795bab8f3542f8a2b9fbdd274d8ccf3b498163..cc90cc1a85f9da53f65e8ef1ad659e4f37efba62 100644
|
| --- a/chrome/browser/ui/views/browser_actions_container.cc
|
| +++ b/chrome/browser/ui/views/browser_actions_container.cc
|
| @@ -226,14 +226,13 @@ bool BrowserActionButton::OnMousePressed(const views::MouseEvent& event) {
|
| return false;
|
| }
|
|
|
| -void BrowserActionButton::OnMouseReleased(const views::MouseEvent& event,
|
| - bool canceled) {
|
| +void BrowserActionButton::OnMouseReleased(const views::MouseEvent& event) {
|
| if (IsPopup() || showing_context_menu_) {
|
| // TODO(erikkay) this never actually gets called (probably because of the
|
| // loss of focus).
|
| - MenuButton::OnMouseReleased(event, canceled);
|
| + MenuButton::OnMouseReleased(event);
|
| } else {
|
| - TextButton::OnMouseReleased(event, canceled);
|
| + TextButton::OnMouseReleased(event);
|
| }
|
| }
|
|
|
|
|