| 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 VIEWS_CONTROLS_COMBOBOX_COMBOBOX_H_ | 5 #ifndef UI_VIEWS_CONTROLS_COMBOBOX_COMBOBOX_H_ |
| 6 #define VIEWS_CONTROLS_COMBOBOX_COMBOBOX_H_ | 6 #define UI_VIEWS_CONTROLS_COMBOBOX_COMBOBOX_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "ui/gfx/native_widget_types.h" | 11 #include "ui/gfx/native_widget_types.h" |
| 12 #include "views/controls/combobox/native_combobox_wrapper.h" | 12 #include "ui/views/controls/combobox/native_combobox_wrapper.h" |
| 13 #include "views/view.h" | 13 #include "views/view.h" |
| 14 | 14 |
| 15 namespace ui { | 15 namespace ui { |
| 16 class ComboboxModel; | 16 class ComboboxModel; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace views { | 19 namespace views { |
| 20 | 20 |
| 21 class ComboboxListener; | 21 class ComboboxListener; |
| 22 | 22 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 int selected_item_; | 92 int selected_item_; |
| 93 | 93 |
| 94 // The accessible name of the text field. | 94 // The accessible name of the text field. |
| 95 string16 accessible_name_; | 95 string16 accessible_name_; |
| 96 | 96 |
| 97 DISALLOW_COPY_AND_ASSIGN(Combobox); | 97 DISALLOW_COPY_AND_ASSIGN(Combobox); |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 } // namespace views | 100 } // namespace views |
| 101 | 101 |
| 102 #endif // VIEWS_CONTROLS_COMBOBOX_COMBOBOX_H_ | 102 #endif // UI_VIEWS_CONTROLS_COMBOBOX_COMBOBOX_H_ |
| OLD | NEW |