OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
3 // LICENSE file. | 3 // LICENSE file. |
4 | 4 |
5 #include "views/controls/combobox/native_combobox_gtk.h" | 5 #include "views/controls/combobox/native_combobox_gtk.h" |
6 | 6 |
| 7 #include "base/logging.h" |
7 #include "views/controls/combobox/combobox.h" | 8 #include "views/controls/combobox/combobox.h" |
8 | 9 |
9 namespace views { | 10 namespace views { |
10 | 11 |
11 //////////////////////////////////////////////////////////////////////////////// | 12 //////////////////////////////////////////////////////////////////////////////// |
12 // NativeComboboxGtk, public: | 13 // NativeComboboxGtk, public: |
13 | 14 |
14 NativeComboboxGtk::NativeComboboxGtk(Combobox* combobox) | 15 NativeComboboxGtk::NativeComboboxGtk(Combobox* combobox) |
15 : combobox_(combobox) { | 16 : combobox_(combobox) { |
16 } | 17 } |
(...skipping 52 matching lines...) Loading... |
69 //////////////////////////////////////////////////////////////////////////////// | 70 //////////////////////////////////////////////////////////////////////////////// |
70 // NativeComboboxWrapper, public: | 71 // NativeComboboxWrapper, public: |
71 | 72 |
72 // static | 73 // static |
73 NativeComboboxWrapper* NativeComboboxWrapper::CreateWrapper( | 74 NativeComboboxWrapper* NativeComboboxWrapper::CreateWrapper( |
74 Combobox* combobox) { | 75 Combobox* combobox) { |
75 return new NativeComboboxGtk(combobox); | 76 return new NativeComboboxGtk(combobox); |
76 } | 77 } |
77 | 78 |
78 } // namespace views | 79 } // namespace views |
OLD | NEW |