| 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_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "app/gfx/canvas.h" | |
| 11 #include "chrome/common/notification_registrar.h" | 10 #include "chrome/common/notification_registrar.h" |
| 12 #include "chrome/common/notification_service.h" | 11 #include "chrome/common/notification_service.h" |
| 12 #include "gfx/canvas.h" |
| 13 #include "views/controls/label.h" | 13 #include "views/controls/label.h" |
| 14 | 14 |
| 15 class TabContents; | 15 class TabContents; |
| 16 | 16 |
| 17 namespace views { | 17 namespace views { |
| 18 class Widget; | 18 class Widget; |
| 19 } | 19 } |
| 20 | 20 |
| 21 // ThemeInstallBubbleView is a view that provides a "Loading..." bubble in the | 21 // ThemeInstallBubbleView is a view that provides a "Loading..." bubble in the |
| 22 // center of a browser window for use when an extension or theme is loaded. | 22 // center of a browser window for use when an extension or theme is loaded. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 std::wstring text_; | 68 std::wstring text_; |
| 69 | 69 |
| 70 // A scoped container for notification registries. | 70 // A scoped container for notification registries. |
| 71 NotificationRegistrar registrar_; | 71 NotificationRegistrar registrar_; |
| 72 | 72 |
| 73 DISALLOW_COPY_AND_ASSIGN(ThemeInstallBubbleView); | 73 DISALLOW_COPY_AND_ASSIGN(ThemeInstallBubbleView); |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 #endif // CHROME_BROWSER_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ | 76 #endif // CHROME_BROWSER_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ |
| 77 | 77 |
| OLD | NEW |