| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 // If true, the Translate bubble is being shown. | 57 // If true, the Translate bubble is being shown. |
| 58 static bool IsShowing(); | 58 static bool IsShowing(); |
| 59 | 59 |
| 60 // Returns the bubble view currently shown. This may return NULL. | 60 // Returns the bubble view currently shown. This may return NULL. |
| 61 static TranslateBubbleView* GetCurrentBubble(); | 61 static TranslateBubbleView* GetCurrentBubble(); |
| 62 | 62 |
| 63 TranslateBubbleModel* model() { return model_.get(); } | 63 TranslateBubbleModel* model() { return model_.get(); } |
| 64 | 64 |
| 65 // views::BubbleDelegateView methods. | 65 // views::BubbleDelegateView methods. |
| 66 virtual void Init() OVERRIDE; | 66 virtual void Init() override; |
| 67 virtual void ButtonPressed(views::Button* sender, | 67 virtual void ButtonPressed(views::Button* sender, |
| 68 const ui::Event& event) OVERRIDE; | 68 const ui::Event& event) override; |
| 69 | 69 |
| 70 // views::WidgetDelegate method. | 70 // views::WidgetDelegate method. |
| 71 virtual void WindowClosing() OVERRIDE; | 71 virtual void WindowClosing() override; |
| 72 | 72 |
| 73 // views::View methods. | 73 // views::View methods. |
| 74 virtual bool AcceleratorPressed(const ui::Accelerator& accelerator) OVERRIDE; | 74 virtual bool AcceleratorPressed(const ui::Accelerator& accelerator) override; |
| 75 virtual gfx::Size GetPreferredSize() const OVERRIDE; | 75 virtual gfx::Size GetPreferredSize() const override; |
| 76 | 76 |
| 77 // views::CombboxListener methods. | 77 // views::CombboxListener methods. |
| 78 virtual void OnPerformAction(views::Combobox* combobox) OVERRIDE; | 78 virtual void OnPerformAction(views::Combobox* combobox) override; |
| 79 | 79 |
| 80 // views::LinkListener method. | 80 // views::LinkListener method. |
| 81 virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE; | 81 virtual void LinkClicked(views::Link* source, int event_flags) override; |
| 82 | 82 |
| 83 // content::WebContentsObserver method. | 83 // content::WebContentsObserver method. |
| 84 virtual void WebContentsDestroyed() OVERRIDE; | 84 virtual void WebContentsDestroyed() override; |
| 85 | 85 |
| 86 // Returns the current view state. | 86 // Returns the current view state. |
| 87 TranslateBubbleModel::ViewState GetViewState() const; | 87 TranslateBubbleModel::ViewState GetViewState() const; |
| 88 | 88 |
| 89 private: | 89 private: |
| 90 enum LinkID { | 90 enum LinkID { |
| 91 LINK_ID_ADVANCED, | 91 LINK_ID_ADVANCED, |
| 92 LINK_ID_LANGUAGE_SETTINGS, | 92 LINK_ID_LANGUAGE_SETTINGS, |
| 93 }; | 93 }; |
| 94 | 94 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 // Whether the translation is acutually executed. | 203 // Whether the translation is acutually executed. |
| 204 bool translate_executed_; | 204 bool translate_executed_; |
| 205 | 205 |
| 206 // Whether one of denial buttons is clicked. | 206 // Whether one of denial buttons is clicked. |
| 207 bool denial_button_clicked_; | 207 bool denial_button_clicked_; |
| 208 | 208 |
| 209 DISALLOW_COPY_AND_ASSIGN(TranslateBubbleView); | 209 DISALLOW_COPY_AND_ASSIGN(TranslateBubbleView); |
| 210 }; | 210 }; |
| 211 | 211 |
| 212 #endif // CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ | 212 #endif // CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ |
| OLD | NEW |