OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROME_TO_MOBILE_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_CHROME_TO_MOBILE_BUBBLE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_CHROME_TO_MOBILE_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_CHROME_TO_MOBILE_BUBBLE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 | 10 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 // The currently selected (or solitary) mobile device's info. | 85 // The currently selected (or solitary) mobile device's info. |
86 base::DictionaryValue* selected_mobile_; | 86 base::DictionaryValue* selected_mobile_; |
87 | 87 |
88 // The file path for the MHTML page snapshot. | 88 // The file path for the MHTML page snapshot. |
89 FilePath snapshot_path_; | 89 FilePath snapshot_path_; |
90 | 90 |
91 views::Checkbox* send_copy_; | 91 views::Checkbox* send_copy_; |
92 views::TextButton* send_; | 92 views::TextButton* send_; |
93 views::TextButton* cancel_; | 93 views::TextButton* cancel_; |
94 | 94 |
95 // The label indicating "Sending..."/"Sent" progress after invoking "Send". | |
96 views::Label* progress_label_; | |
97 | |
98 // An animation used to cycle through the "Sending..." status messages. | 95 // An animation used to cycle through the "Sending..." status messages. |
99 scoped_ptr<ui::ThrobAnimation> progress_animation_; | 96 scoped_ptr<ui::ThrobAnimation> progress_animation_; |
100 | 97 |
101 DISALLOW_COPY_AND_ASSIGN(ChromeToMobileBubbleView); | 98 DISALLOW_COPY_AND_ASSIGN(ChromeToMobileBubbleView); |
102 }; | 99 }; |
103 | 100 |
104 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_TO_MOBILE_BUBBLE_VIEW_H_ | 101 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_TO_MOBILE_BUBBLE_VIEW_H_ |
OLD | NEW |