OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_THEME_INSTALL_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "chrome/common/notification_observer.h" | 11 #include "chrome/common/notification_observer.h" |
12 #include "chrome/common/notification_registrar.h" | 12 #include "chrome/common/notification_registrar.h" |
13 #include "chrome/common/notification_service.h" | |
14 #include "gfx/canvas.h" | 13 #include "gfx/canvas.h" |
15 #include "views/controls/label.h" | 14 #include "views/controls/label.h" |
16 | 15 |
17 class TabContents; | 16 class TabContents; |
18 | 17 |
19 namespace views { | 18 namespace views { |
20 class Widget; | 19 class Widget; |
21 } | 20 } |
22 | 21 |
23 // ThemeInstallBubbleView is a view that provides a "Loading..." bubble in the | 22 // ThemeInstallBubbleView is a view that provides a "Loading..." bubble in the |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // Text to show warning that theme is being installed. | 68 // Text to show warning that theme is being installed. |
70 std::wstring text_; | 69 std::wstring text_; |
71 | 70 |
72 // A scoped container for notification registries. | 71 // A scoped container for notification registries. |
73 NotificationRegistrar registrar_; | 72 NotificationRegistrar registrar_; |
74 | 73 |
75 DISALLOW_COPY_AND_ASSIGN(ThemeInstallBubbleView); | 74 DISALLOW_COPY_AND_ASSIGN(ThemeInstallBubbleView); |
76 }; | 75 }; |
77 | 76 |
78 #endif // CHROME_BROWSER_UI_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ | 77 #endif // CHROME_BROWSER_UI_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ |
79 | |
OLD | NEW |