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 24 matching lines...) Expand all Loading... |
35 | 35 |
36 class TranslateBubbleView : public views::BubbleDelegateView, | 36 class TranslateBubbleView : public views::BubbleDelegateView, |
37 public views::ButtonListener, | 37 public views::ButtonListener, |
38 public views::ComboboxListener, | 38 public views::ComboboxListener, |
39 public views::LinkListener, | 39 public views::LinkListener, |
40 public content::WebContentsObserver { | 40 public content::WebContentsObserver { |
41 public: | 41 public: |
42 virtual ~TranslateBubbleView(); | 42 virtual ~TranslateBubbleView(); |
43 | 43 |
44 // Shows the Translate bubble. | 44 // Shows the Translate bubble. |
| 45 // |
| 46 // |is_user_gesture| is true when the bubble is shown on the user's delibarate |
| 47 // action. |
45 static void ShowBubble(views::View* anchor_view, | 48 static void ShowBubble(views::View* anchor_view, |
46 content::WebContents* web_contents, | 49 content::WebContents* web_contents, |
47 translate::TranslateStep step, | 50 translate::TranslateStep step, |
48 translate::TranslateErrors::Type error_type); | 51 translate::TranslateErrors::Type error_type, |
| 52 bool is_user_gesture); |
49 | 53 |
50 // If true, the Translate bubble is being shown. | 54 // If true, the Translate bubble is being shown. |
51 static bool IsShowing(); | 55 static bool IsShowing(); |
52 | 56 |
53 // Returns the bubble view currently shown. This may return NULL. | 57 // Returns the bubble view currently shown. This may return NULL. |
54 static TranslateBubbleView* GetCurrentBubble(); | 58 static TranslateBubbleView* GetCurrentBubble(); |
55 | 59 |
56 TranslateBubbleModel* model() { return model_.get(); } | 60 TranslateBubbleModel* model() { return model_.get(); } |
57 | 61 |
58 // views::BubbleDelegateView methods. | 62 // views::BubbleDelegateView methods. |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 // Whether the translation is acutually executed. | 200 // Whether the translation is acutually executed. |
197 bool translate_executed_; | 201 bool translate_executed_; |
198 | 202 |
199 // Whether one of denial buttons is clicked. | 203 // Whether one of denial buttons is clicked. |
200 bool denial_button_clicked_; | 204 bool denial_button_clicked_; |
201 | 205 |
202 DISALLOW_COPY_AND_ASSIGN(TranslateBubbleView); | 206 DISALLOW_COPY_AND_ASSIGN(TranslateBubbleView); |
203 }; | 207 }; |
204 | 208 |
205 #endif // CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ | 209 #endif // CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ |
OLD | NEW |