OLD | NEW |
1 // Copyright (c) 2009 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_GTK_INFOBAR_CONTAINER_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_INFOBAR_CONTAINER_GTK_H_ |
6 #define CHROME_BROWSER_GTK_INFOBAR_CONTAINER_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_INFOBAR_CONTAINER_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "chrome/browser/gtk/owned_widget_gtk.h" | 10 #include "chrome/browser/gtk/owned_widget_gtk.h" |
11 #include "chrome/common/notification_observer.h" | 11 #include "chrome/common/notification_observer.h" |
12 #include "chrome/common/notification_registrar.h" | 12 #include "chrome/common/notification_registrar.h" |
13 | 13 |
14 class InfoBar; | 14 class InfoBar; |
15 class InfoBarDelegate; | 15 class InfoBarDelegate; |
16 class Profile; | 16 class Profile; |
(...skipping 58 matching lines...) Loading... |
75 | 75 |
76 // The TabContents for which we are currently showing InfoBars. | 76 // The TabContents for which we are currently showing InfoBars. |
77 TabContents* tab_contents_; | 77 TabContents* tab_contents_; |
78 | 78 |
79 // VBox that holds the info bars. | 79 // VBox that holds the info bars. |
80 OwnedWidgetGtk container_; | 80 OwnedWidgetGtk container_; |
81 | 81 |
82 DISALLOW_COPY_AND_ASSIGN(InfoBarContainerGtk); | 82 DISALLOW_COPY_AND_ASSIGN(InfoBarContainerGtk); |
83 }; | 83 }; |
84 | 84 |
85 #endif // CHROME_BROWSER_GTK_INFOBAR_CONTAINER_GTK_H_ | 85 #endif // CHROME_BROWSER_UI_GTK_INFOBAR_CONTAINER_GTK_H_ |
OLD | NEW |