Chromium Code Reviews| Index: chrome/browser/ui/views/translate/translate_bubble_view.h |
| diff --git a/chrome/browser/ui/views/translate/translate_bubble_view.h b/chrome/browser/ui/views/translate/translate_bubble_view.h |
| index 6aa224d00c6a7a417fa88b05789d91b507330f7c..94b2a991ea91c9b6706f1829ac04ce3150070229 100644 |
| --- a/chrome/browser/ui/views/translate/translate_bubble_view.h |
| +++ b/chrome/browser/ui/views/translate/translate_bubble_view.h |
| @@ -82,6 +82,9 @@ class TranslateBubbleView : public LocationBarBubbleDelegateView, |
| TranslateBubbleModel* model() { return model_.get(); } |
| + // LocationBarBubbleDelegateView: |
| + void CloseBubble() override; |
|
Peter Kasting
2016/06/13 20:27:24
This was protected in the base class. Does it nee
hcarmona
2016/06/13 20:49:03
Done, it's now protected.
|
| + |
| // views::BubbleDialogDelegateView methods. |
| void Init() override; |
| void ButtonPressed(views::Button* sender, const ui::Event& event) override; |
| @@ -248,6 +251,8 @@ class TranslateBubbleView : public LocationBarBubbleDelegateView, |
| // Whether the window is an incognito window. |
| const bool is_in_incognito_window_; |
| + std::unique_ptr<WebContentMouseHandler> mouse_handler_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(TranslateBubbleView); |
| }; |