diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-30 21:22:07 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-30 21:22:07 +0000 |
commit | 5f7e2b3d7e0212322d3b06b9623e9adb6ef37e67 (patch) | |
tree | d169d3dfe15aee1dd21ec7483747ea0da24d66d2 /ui/accessibility | |
parent | e0b0abd0cd90ba1ce625bba08fe151c999bf3255 (diff) | |
download | chromium_src-5f7e2b3d7e0212322d3b06b9623e9adb6ef37e67.zip chromium_src-5f7e2b3d7e0212322d3b06b9623e9adb6ef37e67.tar.gz chromium_src-5f7e2b3d7e0212322d3b06b9623e9adb6ef37e67.tar.bz2 |
Revert 267297 "Extend AXTreeSourceViews to handle aura::Window a..."
> Extend AXTreeSourceViews to handle aura::Window and views::Widget.
>
>
> initial patch
>
> BUG=
>
> Review URL: https://codereview.chromium.org/246433012
TBR=dtseng@chromium.org
Review URL: https://codereview.chromium.org/264693002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267336 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/accessibility')
-rw-r--r-- | ui/accessibility/ax_enums.idl | 1 | ||||
-rw-r--r-- | ui/accessibility/ax_view_state.h | 7 |
2 files changed, 2 insertions, 6 deletions
diff --git a/ui/accessibility/ax_enums.idl b/ui/accessibility/ax_enums.idl index ea46143..77287e3 100644 --- a/ui/accessibility/ax_enums.idl +++ b/ui/accessibility/ax_enums.idl @@ -65,7 +65,6 @@ namespace ui { definition, description_list_detail, description_list_term, - desktop, dialog, directory, disclosure_triangle, diff --git a/ui/accessibility/ax_view_state.h b/ui/accessibility/ax_view_state.h index 2f1aab09..5d72d47 100644 --- a/ui/accessibility/ax_view_state.h +++ b/ui/accessibility/ax_view_state.h @@ -30,11 +30,6 @@ struct AX_EXPORT AXViewState { void AddStateFlag(ui::AXState state); bool HasStateFlag(ui::AXState state) const; - // The view's state, a bitmask containing fields such as checked - // (for a checkbox) and protected (for a password text box). This "state" - // should not be confused with the class's name. - uint32 state() { return state_; } - // The view's role, like button or list box. AXRole role; @@ -73,6 +68,8 @@ struct AX_EXPORT AXViewState { base::Callback<void(const base::string16&)> set_value_callback; private: + // The view's state, a bitmask containing fields such as checked + // (for a checkbox) and protected (for a password text box). uint32 state_; }; |