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_INFOBARS_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_INFOBARS_INFOBARS_H_ |
6 #define CHROME_BROWSER_VIEWS_INFOBARS_INFOBARS_H_ | 6 #define CHROME_BROWSER_VIEWS_INFOBARS_INFOBARS_H_ |
7 | 7 |
8 #include "app/animation.h" | 8 #include "app/animation.h" |
| 9 #include "base/task.h" |
9 #include "chrome/browser/tab_contents/infobar_delegate.h" | 10 #include "chrome/browser/tab_contents/infobar_delegate.h" |
10 #include "views/controls/button/button.h" | 11 #include "views/controls/button/button.h" |
11 #include "views/controls/link.h" | 12 #include "views/controls/link.h" |
12 | 13 |
13 class InfoBarContainer; | 14 class InfoBarContainer; |
14 class SlideAnimation; | 15 class SlideAnimation; |
15 namespace views { | 16 namespace views { |
16 class ExternalFocusTracker; | 17 class ExternalFocusTracker; |
17 class ImageButton; | 18 class ImageButton; |
18 class ImageView; | 19 class ImageView; |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 views::NativeButton* cancel_button_; | 239 views::NativeButton* cancel_button_; |
239 views::Link* link_; | 240 views::Link* link_; |
240 | 241 |
241 bool initialized_; | 242 bool initialized_; |
242 | 243 |
243 DISALLOW_COPY_AND_ASSIGN(ConfirmInfoBar); | 244 DISALLOW_COPY_AND_ASSIGN(ConfirmInfoBar); |
244 }; | 245 }; |
245 | 246 |
246 | 247 |
247 #endif // CHROME_BROWSER_VIEWS_INFOBARS_INFOBARS_H_ | 248 #endif // CHROME_BROWSER_VIEWS_INFOBARS_INFOBARS_H_ |
OLD | NEW |