diff options
Diffstat (limited to 'views/controls/combobox/combobox.h')
-rw-r--r-- | views/controls/combobox/combobox.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/views/controls/combobox/combobox.h b/views/controls/combobox/combobox.h index fdf5f8e..1380051 100644 --- a/views/controls/combobox/combobox.h +++ b/views/controls/combobox/combobox.h @@ -5,8 +5,6 @@ #ifndef VIEWS_CONTROLS_COMBOBOX_COMBOBOX_H_ #define VIEWS_CONTROLS_COMBOBOX_COMBOBOX_H_ -#include <string> - #include "views/view.h" class ComboboxModel; @@ -42,7 +40,7 @@ class Combobox : public View { void ModelChanged(); // Gets/Sets the selected item. - int selected_item() const { return selected_item_; } + int selected_item() const { return selected_item_; }; void SetSelectedItem(int index); // Called when the combo box's selection is changed by the user. @@ -57,9 +55,6 @@ class Combobox : public View { virtual void SetEnabled(bool enabled); virtual bool SkipDefaultKeyEventProcessing(const KeyEvent& e); virtual void PaintFocusBorder(gfx::Canvas* canvas); - virtual bool GetAccessibleName(std::wstring* name); - virtual bool GetAccessibleRole(AccessibilityTypes::Role* role); - virtual void SetAccessibleName(const std::wstring& name); protected: virtual void Focus(); @@ -80,9 +75,6 @@ class Combobox : public View { // The current selection. int selected_item_; - // The accessible name of this control. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(Combobox); }; |