| Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
|
| index fb37a29ded5b0e86c70f417f7847342b9f9c5f02..3cc970b2078d88e54174683fab1436285a7a3085 100644
|
| --- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
|
| @@ -117,7 +117,7 @@ bool IconLabelBubbleView::IsShrinking() const {
|
| return false;
|
| }
|
|
|
| -bool IconLabelBubbleView::OnActivate() {
|
| +bool IconLabelBubbleView::OnActivate(const ui::Event& event) {
|
| return false;
|
| }
|
|
|
| @@ -128,13 +128,13 @@ gfx::Size IconLabelBubbleView::GetPreferredSize() const {
|
|
|
| bool IconLabelBubbleView::OnKeyPressed(const ui::KeyEvent& event) {
|
| if (event.key_code() == ui::VKEY_RETURN)
|
| - return OnActivate();
|
| + return OnActivate(event);
|
| return false;
|
| }
|
|
|
| bool IconLabelBubbleView::OnKeyReleased(const ui::KeyEvent& event) {
|
| if (event.key_code() == ui::VKEY_SPACE)
|
| - return OnActivate();
|
| + return OnActivate(event);
|
| return false;
|
| }
|
|
|
|
|