OLD | NEW |
1 // Copyright (c) 2011 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_INFOBARS_INFOBAR_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_INFOBARS_INFOBAR_CONTAINER_H_ |
6 #define CHROME_BROWSER_INFOBARS_INFOBAR_CONTAINER_H_ | 6 #define CHROME_BROWSER_INFOBARS_INFOBAR_CONTAINER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/time.h" | 11 #include "base/time.h" |
12 #include "chrome/browser/instant/instant_overlay_model_observer.h" | 12 #include "chrome/browser/ui/search/instant_overlay_model_observer.h" |
13 #include "chrome/browser/ui/search/search_model_observer.h" | 13 #include "chrome/browser/ui/search/search_model_observer.h" |
14 #include "chrome/common/search_types.h" | 14 #include "chrome/common/search_types.h" |
15 #include "content/public/browser/notification_observer.h" | 15 #include "content/public/browser/notification_observer.h" |
16 #include "content/public/browser/notification_registrar.h" | 16 #include "content/public/browser/notification_registrar.h" |
17 #include "third_party/skia/include/core/SkColor.h" | 17 #include "third_party/skia/include/core/SkColor.h" |
18 | 18 |
19 class InfoBar; | 19 class InfoBar; |
20 class InfoBarDelegate; | 20 class InfoBarDelegate; |
21 class InfoBarService; | 21 class InfoBarService; |
22 | 22 |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 // Extended. | 180 // Extended. |
181 chrome::search::SearchModel* search_model_; | 181 chrome::search::SearchModel* search_model_; |
182 | 182 |
183 // Calculated in SetMaxTopArrowHeight(). | 183 // Calculated in SetMaxTopArrowHeight(). |
184 int top_arrow_target_height_; | 184 int top_arrow_target_height_; |
185 | 185 |
186 DISALLOW_COPY_AND_ASSIGN(InfoBarContainer); | 186 DISALLOW_COPY_AND_ASSIGN(InfoBarContainer); |
187 }; | 187 }; |
188 | 188 |
189 #endif // CHROME_BROWSER_INFOBARS_INFOBAR_CONTAINER_H_ | 189 #endif // CHROME_BROWSER_INFOBARS_INFOBAR_CONTAINER_H_ |
OLD | NEW |