| 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 06bf08f59334706ee53daa4d469be8f09ab5fa15..5835543f865c9ef76fd0020e4fe7906ca78a800e 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
 | 
| @@ -118,7 +118,7 @@ bool IconLabelBubbleView::IsShrinking() const {
 | 
|    return false;
 | 
|  }
 | 
|  
 | 
| -bool IconLabelBubbleView::OnActivate() {
 | 
| +bool IconLabelBubbleView::OnActivate(const ui::Event& event) {
 | 
|    return false;
 | 
|  }
 | 
|  
 | 
| @@ -129,13 +129,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;
 | 
|  }
 | 
|  
 | 
| 
 |