| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "chrome/common/notification_observer.h" | 10 #include "chrome/common/notification_observer.h" |
| 11 #include "chrome/common/notification_registrar.h" | 11 #include "chrome/common/notification_registrar.h" |
| 12 #include "gfx/canvas.h" | 12 #include "ui/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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 // Text to show warning that theme is being installed. | 67 // Text to show warning that theme is being installed. |
| 68 string16 text_; | 68 string16 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_UI_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ | 76 #endif // CHROME_BROWSER_UI_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ |
| OLD | NEW |