| 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_UI_VIEWS_INFOBARS_INFOBAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "chrome/browser/infobars/infobar.h" | 11 #include "chrome/browser/infobars/infobar.h" |
| 12 #include "chrome/browser/infobars/infobar_container.h" | 12 #include "chrome/browser/infobars/infobar_container.h" |
| 13 #include "third_party/skia/include/core/SkPath.h" | 13 #include "third_party/skia/include/core/SkPath.h" |
| 14 #include "ui/views/focus/focus_manager.h" |
| 14 #include "views/controls/button/button.h" | 15 #include "views/controls/button/button.h" |
| 15 #include "views/controls/menu/menu_item_view.h" | 16 #include "views/controls/menu/menu_item_view.h" |
| 16 #include "views/focus/focus_manager.h" | |
| 17 | 17 |
| 18 namespace ui { | 18 namespace ui { |
| 19 class MenuModel; | 19 class MenuModel; |
| 20 } | 20 } |
| 21 namespace views { | 21 namespace views { |
| 22 class ExternalFocusTracker; | 22 class ExternalFocusTracker; |
| 23 class ImageButton; | 23 class ImageButton; |
| 24 class ImageView; | 24 class ImageView; |
| 25 class Label; | 25 class Label; |
| 26 class Link; | 26 class Link; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 SkPath fill_path_; | 133 SkPath fill_path_; |
| 134 SkPath stroke_path_; | 134 SkPath stroke_path_; |
| 135 | 135 |
| 136 // Used to run the menu. | 136 // Used to run the menu. |
| 137 scoped_ptr<views::MenuRunner> menu_runner_; | 137 scoped_ptr<views::MenuRunner> menu_runner_; |
| 138 | 138 |
| 139 DISALLOW_COPY_AND_ASSIGN(InfoBarView); | 139 DISALLOW_COPY_AND_ASSIGN(InfoBarView); |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_VIEW_H_ | 142 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_INFOBAR_VIEW_H_ |
| OLD | NEW |