| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_INFOBARS_INFOBAR_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/views/accessible_pane_view.h" | 9 #include "chrome/browser/ui/views/accessible_pane_view.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 "views/view.h" | 12 #include "views/view.h" |
| 13 | 13 |
| 14 class BrowserView; | 14 class BrowserView; |
| 15 class InfoBarDelegate; | 15 class InfoBarDelegate; |
| 16 class TabContents; | 16 class TabContents; |
| 17 | 17 |
| 18 // A views::View subclass that contains a collection of InfoBars associated with | 18 // A views::View subclass that contains a collection of InfoBars associated with |
| 19 // a TabContents. | 19 // a TabContents. |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 // The Delegate which receives notifications from the InfoBarContainer. | 85 // The Delegate which receives notifications from the InfoBarContainer. |
| 86 Delegate* delegate_; | 86 Delegate* delegate_; |
| 87 | 87 |
| 88 // The TabContents for which we are currently showing InfoBars. | 88 // The TabContents for which we are currently showing InfoBars. |
| 89 TabContents* tab_contents_; | 89 TabContents* tab_contents_; |
| 90 | 90 |
| 91 DISALLOW_COPY_AND_ASSIGN(InfoBarContainer); | 91 DISALLOW_COPY_AND_ASSIGN(InfoBarContainer); |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ | 94 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_CONTAINER_H_ |
| OLD | NEW |