Chromium Code Reviews| Index: ui/views/controls/combobox/combobox.h |
| diff --git a/ui/views/controls/combobox/combobox.h b/ui/views/controls/combobox/combobox.h |
| index a6f7e351613bd692a52343d49eace92951fe902d..66edac8d88263e499a40b7da5559da15d7340f36 100644 |
| --- a/ui/views/controls/combobox/combobox.h |
| +++ b/ui/views/controls/combobox/combobox.h |
| @@ -12,6 +12,10 @@ |
| #include "ui/views/controls/combobox/native_combobox_wrapper.h" |
| #include "ui/views/view.h" |
| +namespace gfx { |
| +class Font; |
| +} |
| + |
| namespace ui { |
| class ComboboxModel; |
| } |
| @@ -26,6 +30,8 @@ class VIEWS_EXPORT Combobox : public View { |
| // The combobox's class name. |
| static const char kViewClassName[]; |
| + static const gfx::Font& GetFont(); |
|
sky
2012/03/23 18:13:34
static methods shouldn't be before the constructor
tfarina
2012/03/23 18:21:31
Fixed.
|
| + |
| // |model| is not owned by the combo box. |
| explicit Combobox(ui::ComboboxModel* model); |
| virtual ~Combobox(); |