| Index: chrome/browser/ui/views/location_bar/star_view.h
|
| diff --git a/chrome/browser/ui/views/location_bar/star_view.h b/chrome/browser/ui/views/location_bar/star_view.h
|
| index eacf925ec754a0bd864992314ed40d8b9f670cba..71252875cadd050fa664ac915a058b79d6038779 100644
|
| --- a/chrome/browser/ui/views/location_bar/star_view.h
|
| +++ b/chrome/browser/ui/views/location_bar/star_view.h
|
| @@ -6,18 +6,16 @@
|
| #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_
|
| #pragma once
|
|
|
| -#include "chrome/browser/ui/views/bubble/bubble.h"
|
| #include "views/controls/image_view.h"
|
|
|
| class CommandUpdater;
|
| -class Bubble;
|
|
|
| namespace views {
|
| class KeyEvent;
|
| class MouseEvent;
|
| }
|
|
|
| -class StarView : public views::ImageView, public BubbleDelegate {
|
| +class StarView : public views::ImageView {
|
| public:
|
| explicit StarView(CommandUpdater* command_updater);
|
| virtual ~StarView();
|
| @@ -34,11 +32,6 @@ class StarView : public views::ImageView, public BubbleDelegate {
|
| virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE;
|
| virtual bool OnKeyPressed(const views::KeyEvent& event) OVERRIDE;
|
|
|
| - // BubbleDelegate overrides:
|
| - virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) OVERRIDE;
|
| - virtual bool CloseOnEscape() OVERRIDE;
|
| - virtual bool FadeInOnShow() OVERRIDE;
|
| -
|
| // The CommandUpdater for the Browser object that owns the location bar.
|
| CommandUpdater* command_updater_;
|
|
|
|
|