OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 MANDOLINE_UI_DESKTOP_UI_FIND_BAR_VIEW_H_ | 5 #ifndef MANDOLINE_UI_DESKTOP_UI_FIND_BAR_VIEW_H_ |
6 #define MANDOLINE_UI_DESKTOP_UI_FIND_BAR_VIEW_H_ | 6 #define MANDOLINE_UI_DESKTOP_UI_FIND_BAR_VIEW_H_ |
7 | 7 |
8 #include "ui/views/view.h" | 8 #include "base/macros.h" |
9 #include "ui/views/controls/button/label_button.h" | 9 #include "ui/views/controls/button/label_button.h" |
10 #include "ui/views/controls/textfield/textfield_controller.h" | 10 #include "ui/views/controls/textfield/textfield_controller.h" |
| 11 #include "ui/views/view.h" |
11 | 12 |
12 namespace views { | 13 namespace views { |
13 class BoxLayout; | 14 class BoxLayout; |
14 class Label; | 15 class Label; |
15 class Textfield; | 16 class Textfield; |
16 } | 17 } |
17 | 18 |
18 namespace mandoline { | 19 namespace mandoline { |
19 | 20 |
20 class FindBarDelegate; | 21 class FindBarDelegate; |
(...skipping 29 matching lines...) Expand all Loading... |
50 views::LabelButton* close_button_; | 51 views::LabelButton* close_button_; |
51 | 52 |
52 std::string last_find_string_; | 53 std::string last_find_string_; |
53 | 54 |
54 DISALLOW_COPY_AND_ASSIGN(FindBarView); | 55 DISALLOW_COPY_AND_ASSIGN(FindBarView); |
55 }; | 56 }; |
56 | 57 |
57 } // namespace mandoline | 58 } // namespace mandoline |
58 | 59 |
59 #endif // MANDOLINE_UI_DESKTOP_UI_FIND_BAR_VIEW_H_ | 60 #endif // MANDOLINE_UI_DESKTOP_UI_FIND_BAR_VIEW_H_ |
OLD | NEW |