| Index: chrome/browser/ui/views/location_bar/ev_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/ev_bubble_view.cc b/chrome/browser/ui/views/location_bar/ev_bubble_view.cc
|
| index 02288d7f38428a7d71678b9a48316a35fb2f16e7..45149f2dbe08984930f5280222ca91f10b698ae6 100644
|
| --- a/chrome/browser/ui/views/location_bar/ev_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/ev_bubble_view.cc
|
| @@ -4,12 +4,16 @@
|
|
|
| #include "chrome/browser/ui/views/location_bar/ev_bubble_view.h"
|
|
|
| +#include "chrome/browser/ui/browser_show_actions.h"
|
| +
|
| EVBubbleView::EVBubbleView(const int background_images[],
|
| int contained_image,
|
| const SkColor& color,
|
| - LocationBarView* location_bar)
|
| + LocationBarView* location_bar,
|
| + BrowserShowPageInfo* delegate)
|
| : IconLabelBubbleView(background_images, contained_image, color),
|
| - ALLOW_THIS_IN_INITIALIZER_LIST(click_handler_(this, location_bar)) {
|
| + ALLOW_THIS_IN_INITIALIZER_LIST(
|
| + click_handler_(this, location_bar, delegate)) {
|
| SetElideInMiddle(true);
|
| }
|
|
|
|
|