summaryrefslogtreecommitdiffstats
path: root/views/controls/single_split_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'views/controls/single_split_view.h')
-rw-r--r--views/controls/single_split_view.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/views/controls/single_split_view.h b/views/controls/single_split_view.h
index 38e7bbb..dc69c67 100644
--- a/views/controls/single_split_view.h
+++ b/views/controls/single_split_view.h
@@ -42,7 +42,7 @@ class SingleSplitView : public views::View {
virtual void OnBoundsChanged();
virtual void Layout();
- virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
+ virtual AccessibilityTypes::Role GetAccessibleRole();
// SingleSplitView's preferred size is the sum of the preferred widths
// and the max of the heights.
@@ -75,8 +75,6 @@ class SingleSplitView : public views::View {
gfx::Rect* leading_bounds,
gfx::Rect* trailing_bounds) const;
- void SetAccessibleName(const string16& name);
-
protected:
virtual bool OnMousePressed(const MouseEvent& event);
virtual bool OnMouseDragged(const MouseEvent& event);
@@ -134,9 +132,6 @@ class SingleSplitView : public views::View {
// Observer to notify about user initiated handle movements. Not own by us.
Observer* observer_;
- // The accessible name of this view.
- string16 accessible_name_;
-
DISALLOW_COPY_AND_ASSIGN(SingleSplitView);
};