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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 ~TranslateBubbleView() override; | 54 ~TranslateBubbleView() override; |
55 | 55 |
56 // Shows the Translate bubble. | 56 // Shows the Translate bubble. |
57 // | 57 // |
58 // |is_user_gesture| is true when the bubble is shown on the user's delibarate | 58 // |is_user_gesture| is true when the bubble is shown on the user's delibarate |
59 // action. | 59 // action. |
60 static void ShowBubble(views::View* anchor_view, | 60 static void ShowBubble(views::View* anchor_view, |
61 content::WebContents* web_contents, | 61 content::WebContents* web_contents, |
62 translate::TranslateStep step, | 62 translate::TranslateStep step, |
63 translate::TranslateErrors::Type error_type, | 63 translate::TranslateErrors::Type error_type, |
64 bool is_user_gesture); | 64 DisplayReason reason); |
65 | 65 |
66 // Closes the current bubble if existing. | 66 // Closes the current bubble if existing. |
67 static void CloseBubble(); | 67 static void CloseBubble(); |
68 | 68 |
69 // Returns the bubble view currently shown. This may return NULL. | 69 // Returns the bubble view currently shown. This may return NULL. |
70 static TranslateBubbleView* GetCurrentBubble(); | 70 static TranslateBubbleView* GetCurrentBubble(); |
71 | 71 |
72 TranslateBubbleModel* model() { return model_.get(); } | 72 TranslateBubbleModel* model() { return model_.get(); } |
73 | 73 |
74 // views::BubbleDelegateView methods. | 74 // views::BubbleDelegateView methods. |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 // Whether the translation is acutually executed. | 212 // Whether the translation is acutually executed. |
213 bool translate_executed_; | 213 bool translate_executed_; |
214 | 214 |
215 // Whether one of denial buttons is clicked. | 215 // Whether one of denial buttons is clicked. |
216 bool denial_button_clicked_; | 216 bool denial_button_clicked_; |
217 | 217 |
218 DISALLOW_COPY_AND_ASSIGN(TranslateBubbleView); | 218 DISALLOW_COPY_AND_ASSIGN(TranslateBubbleView); |
219 }; | 219 }; |
220 | 220 |
221 #endif // CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ | 221 #endif // CHROME_BROWSER_UI_VIEWS_TRANSLATE_TRANSLATE_BUBBLE_VIEW_H_ |
OLD | NEW |