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

Side by Side Diff: content/browser/accessibility/browser_accessibility_win.h

Issue 2684543002: Finish implementation and tests of 5 ARIA 1.1 attributes. (Closed)
Patch Set: Update expectations Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlcom.h> 9 #include <atlcom.h>
10 #include <oleacc.h> 10 #include <oleacc.h>
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 CONTENT_EXPORT STDMETHODIMP 237 CONTENT_EXPORT STDMETHODIMP
238 scrollToPoint(enum IA2CoordinateType coordinate_type, 238 scrollToPoint(enum IA2CoordinateType coordinate_type,
239 LONG x, 239 LONG x,
240 LONG y) override; 240 LONG y) override;
241 241
242 CONTENT_EXPORT STDMETHODIMP 242 CONTENT_EXPORT STDMETHODIMP
243 get_groupPosition(LONG* group_level, 243 get_groupPosition(LONG* group_level,
244 LONG* similar_items_in_group, 244 LONG* similar_items_in_group,
245 LONG* position_in_group) override; 245 LONG* position_in_group) override;
246 246
247 CONTENT_EXPORT STDMETHODIMP
248 get_localizedExtendedRole(BSTR* localized_extended_role) override;
249
247 // 250 //
248 // IAccessible2 methods not implemented. 251 // IAccessible2 methods not implemented.
249 // 252 //
250 CONTENT_EXPORT STDMETHODIMP get_extendedRole(BSTR* extended_role) override; 253 CONTENT_EXPORT STDMETHODIMP get_extendedRole(BSTR* extended_role) override;
251 CONTENT_EXPORT STDMETHODIMP 254 CONTENT_EXPORT STDMETHODIMP
252 get_localizedExtendedRole(BSTR* localized_extended_role) override;
253 CONTENT_EXPORT STDMETHODIMP
254 get_nExtendedStates(LONG* n_extended_states) override; 255 get_nExtendedStates(LONG* n_extended_states) override;
255 CONTENT_EXPORT STDMETHODIMP 256 CONTENT_EXPORT STDMETHODIMP
256 get_extendedStates(LONG max_extended_states, 257 get_extendedStates(LONG max_extended_states,
257 BSTR** extended_states, 258 BSTR** extended_states,
258 LONG* n_extended_states) override; 259 LONG* n_extended_states) override;
259 CONTENT_EXPORT STDMETHODIMP 260 CONTENT_EXPORT STDMETHODIMP
260 get_localizedExtendedStates(LONG max_localized_extended_states, 261 get_localizedExtendedStates(LONG max_localized_extended_states,
261 BSTR** localized_extended_states, 262 BSTR** localized_extended_states,
262 LONG* n_localized_extended_states) override; 263 LONG* n_localized_extended_states) override;
263 CONTENT_EXPORT STDMETHODIMP get_locale(IA2Locale* locale) override; 264 CONTENT_EXPORT STDMETHODIMP get_locale(IA2Locale* locale) override;
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
968 969
969 CONTENT_EXPORT BrowserAccessibilityWin* 970 CONTENT_EXPORT BrowserAccessibilityWin*
970 ToBrowserAccessibilityWin(BrowserAccessibility* obj); 971 ToBrowserAccessibilityWin(BrowserAccessibility* obj);
971 972
972 CONTENT_EXPORT const BrowserAccessibilityWin* 973 CONTENT_EXPORT const BrowserAccessibilityWin*
973 ToBrowserAccessibilityWin(const BrowserAccessibility* obj); 974 ToBrowserAccessibilityWin(const BrowserAccessibility* obj);
974 975
975 } // namespace content 976 } // namespace content
976 977
977 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ 978 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698