OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_FIND_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
10 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
11 #include "chrome/browser/ui/views/dropdown_bar_view.h" | 12 #include "chrome/browser/ui/views/dropdown_bar_view.h" |
12 #include "ui/views/controls/button/button.h" | 13 #include "ui/views/controls/button/button.h" |
13 #include "ui/views/controls/textfield/textfield.h" | 14 #include "ui/views/controls/textfield/textfield.h" |
14 #include "ui/views/controls/textfield/textfield_controller.h" | 15 #include "ui/views/controls/textfield/textfield_controller.h" |
15 #include "ui/views/view_targeter_delegate.h" | 16 #include "ui/views/view_targeter_delegate.h" |
16 | 17 |
17 class FindBarHost; | 18 class FindBarHost; |
18 class FindNotificationDetails; | 19 class FindNotificationDetails; |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 views::ImageButton* find_next_button_; | 147 views::ImageButton* find_next_button_; |
147 views::ImageButton* close_button_; | 148 views::ImageButton* close_button_; |
148 | 149 |
149 // The preferred height of the find bar. | 150 // The preferred height of the find bar. |
150 int preferred_height_; | 151 int preferred_height_; |
151 | 152 |
152 DISALLOW_COPY_AND_ASSIGN(FindBarView); | 153 DISALLOW_COPY_AND_ASSIGN(FindBarView); |
153 }; | 154 }; |
154 | 155 |
155 #endif // CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_ | 156 #endif // CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_ |
OLD | NEW |