| 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 #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_registrar.h" | 12 #include "chrome/common/notification_registrar.h" |
| 12 #include "chrome/common/notification_service.h" | 13 #include "chrome/common/notification_service.h" |
| 13 #include "gfx/canvas.h" | 14 #include "gfx/canvas.h" |
| 14 #include "views/controls/label.h" | 15 #include "views/controls/label.h" |
| 15 | 16 |
| 16 class TabContents; | 17 class TabContents; |
| 17 | 18 |
| 18 namespace views { | 19 namespace views { |
| 19 class Widget; | 20 class Widget; |
| 20 } | 21 } |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 std::wstring text_; | 70 std::wstring text_; |
| 70 | 71 |
| 71 // A scoped container for notification registries. | 72 // A scoped container for notification registries. |
| 72 NotificationRegistrar registrar_; | 73 NotificationRegistrar registrar_; |
| 73 | 74 |
| 74 DISALLOW_COPY_AND_ASSIGN(ThemeInstallBubbleView); | 75 DISALLOW_COPY_AND_ASSIGN(ThemeInstallBubbleView); |
| 75 }; | 76 }; |
| 76 | 77 |
| 77 #endif // CHROME_BROWSER_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ | 78 #endif // CHROME_BROWSER_VIEWS_THEME_INSTALL_BUBBLE_VIEW_H_ |
| 78 | 79 |
| OLD | NEW |