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_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ |
6 #define CHROME_BROWSER_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ | 6 #define CHROME_BROWSER_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ |
7 | 7 |
8 #include "chrome/common/notification_registrar.h" | 8 #include "chrome/common/notification_registrar.h" |
9 #include "views/view.h" | 9 #include "views/view.h" |
10 | 10 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 InfoBarDelegate* new_delegate); | 78 InfoBarDelegate* new_delegate); |
79 | 79 |
80 NotificationRegistrar registrar_; | 80 NotificationRegistrar registrar_; |
81 | 81 |
82 // The Delegate which receives notifications from the InfoBarContainer. | 82 // The Delegate which receives notifications from the InfoBarContainer. |
83 Delegate* delegate_; | 83 Delegate* delegate_; |
84 | 84 |
85 // The TabContents for which we are currently showing InfoBars. | 85 // The TabContents for which we are currently showing InfoBars. |
86 TabContents* tab_contents_; | 86 TabContents* tab_contents_; |
87 | 87 |
88 // Storage of the string needed for accessibility. | |
89 std::wstring accessible_name_; | |
90 | |
91 DISALLOW_COPY_AND_ASSIGN(InfoBarContainer); | 88 DISALLOW_COPY_AND_ASSIGN(InfoBarContainer); |
92 }; | 89 }; |
93 | 90 |
94 #endif // CHROME_BROWSER_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ | 91 #endif // CHROME_BROWSER_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ |
OLD | NEW |