Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: ui/base/accessibility/accessibility_types.h

Issue 8391010: Improve omnibox accessibility on Windows. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | views/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/accessibility/accessibility_types.h
===================================================================
--- ui/base/accessibility/accessibility_types.h (revision 107903)
+++ ui/base/accessibility/accessibility_types.h (working copy)
@@ -22,32 +22,33 @@
public:
// This defines states of the supported accessibility roles in our
- // Views (e.g. used in View::GetAccessibleState). Any interface using roles
- // must provide a conversion to its own roles (see e.g.
- // ViewAccessibility::get_accState and ViewAccessibility::MSAAState).
+ // Views (e.g. used in View::GetAccessibleState). Any interface using states
+ // must provide a conversion to its own states (see e.g.
+ // NativeViewAccessibilityWin::get_accState).
typedef uint32 State;
enum StateFlag {
STATE_CHECKED = 1 << 0,
STATE_COLLAPSED = 1 << 1,
STATE_DEFAULT = 1 << 2,
- STATE_EXPANDED = 1 << 3,
- STATE_HASPOPUP = 1 << 4,
- STATE_HOTTRACKED = 1 << 5,
- STATE_INVISIBLE = 1 << 6,
- STATE_LINKED = 1 << 7,
- STATE_OFFSCREEN = 1 << 8,
- STATE_PRESSED = 1 << 9,
- STATE_PROTECTED = 1 << 10,
- STATE_READONLY = 1 << 11,
- STATE_SELECTED = 1 << 12,
- STATE_FOCUSED = 1 << 13,
- STATE_UNAVAILABLE = 1 << 14
+ STATE_EDITABLE = 1 << 3,
+ STATE_EXPANDED = 1 << 4,
+ STATE_FOCUSED = 1 << 5,
+ STATE_HASPOPUP = 1 << 6,
+ STATE_HOTTRACKED = 1 << 7,
+ STATE_INVISIBLE = 1 << 8,
+ STATE_LINKED = 1 << 9,
+ STATE_OFFSCREEN = 1 << 10,
+ STATE_PRESSED = 1 << 11,
+ STATE_PROTECTED = 1 << 12,
+ STATE_READONLY = 1 << 13,
+ STATE_SELECTED = 1 << 14,
+ STATE_UNAVAILABLE = 1 << 15
};
// This defines an enumeration of the supported accessibility roles in our
// Views (e.g. used in View::GetAccessibleRole). Any interface using roles
// must provide a conversion to its own roles (see e.g.
- // ViewAccessibility::get_accRole and ViewAccessibility::MSAARole).
+ // NativeViewAccessibilityWin::get_accRole).
enum Role {
ROLE_ALERT,
ROLE_APPLICATION,
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | views/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698