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

Unified Diff: content/browser/accessibility/browser_accessibility_win.h

Issue 8588036: Improve support for multiselect list box accessibility on Windows. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
Index: content/browser/accessibility/browser_accessibility_win.h
===================================================================
--- content/browser/accessibility/browser_accessibility_win.h (revision 111700)
+++ content/browser/accessibility/browser_accessibility_win.h (working copy)
@@ -194,6 +194,10 @@
IAccessibleRelation** relations,
LONG* n_relations);
+ CONTENT_EXPORT STDMETHODIMP get_groupPosition(LONG* group_level,
+ LONG* similar_items_in_group,
+ LONG* position_in_group);
+
// IAccessible2 methods not implemented.
CONTENT_EXPORT STDMETHODIMP get_extendedRole(BSTR* extended_role) {
return E_NOTIMPL;
@@ -207,11 +211,6 @@
LONG y) {
return E_NOTIMPL;
}
- CONTENT_EXPORT STDMETHODIMP get_groupPosition(LONG* group_level,
- LONG* similar_items_in_group,
- LONG* position_in_group) {
- return E_NOTIMPL;
- }
CONTENT_EXPORT STDMETHODIMP get_localizedExtendedRole(
BSTR* localized_extended_role) {
return E_NOTIMPL;
@@ -722,6 +721,9 @@
// is initialized again but the text doesn't change.
string16 old_text_;
+ // The previous state, used to see if there was a state change.
+ int32 old_ia_state_;
+
// Relationships between this node and other nodes.
std::vector<BrowserAccessibilityRelation*> relations_;

Powered by Google App Engine
This is Rietveld 408576698