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

Side by Side Diff: ui/accessibility/ax_enums.idl

Issue 1063383005: Chromium side Implementation to expose aria properties - setsize & posinset (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updating expectations on android Created 5 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 5 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
6 // until the Chromium and Blink trees are merged. 6 // until the Chromium and Blink trees are merged.
7 [camel_case_enum_to_string=true] namespace ui { 7 [camel_case_enum_to_string=true] namespace ui {
8 8
9 // For new entries to the following three enums, also add to 9 // For new entries to the following three enums, also add to
10 // chrome/common/extensions/api/automation.idl. 10 // chrome/common/extensions/api/automation.idl.
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 306
307 // Inline text attributes. 307 // Inline text attributes.
308 text_direction, 308 text_direction,
309 309
310 // Uniquely identifies an AXTree. 310 // Uniquely identifies an AXTree.
311 tree_id, 311 tree_id,
312 312
313 // Identifies a child tree which this node hosts. 313 // Identifies a child tree which this node hosts.
314 child_tree_id, 314 child_tree_id,
315 315
316 // Position or Number of items in current set of listitems or treeitems
317 set_size,
318 pos_in_set,
319
316 // Indicates if a form control has invalid input or 320 // Indicates if a form control has invalid input or
317 // if an element has an aria-invalid attribute. 321 // if an element has an aria-invalid attribute.
318 invalid_state 322 invalid_state
319 }; 323 };
320 324
321 [cpp_enum_prefix_override="ax_attr"] enum AXFloatAttribute { 325 [cpp_enum_prefix_override="ax_attr"] enum AXFloatAttribute {
322 // Document attributes. 326 // Document attributes.
323 doc_loading_progress, 327 doc_loading_progress,
324 328
325 // Range attributes. 329 // Range attributes.
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 }; 424 };
421 425
422 [cpp_enum_prefix_override="ax"] enum AXSortDirection { 426 [cpp_enum_prefix_override="ax"] enum AXSortDirection {
423 sort_direction_unsorted, 427 sort_direction_unsorted,
424 sort_direction_ascending, 428 sort_direction_ascending,
425 sort_direction_descending, 429 sort_direction_descending,
426 sort_direction_other 430 sort_direction_other
427 }; 431 };
428 432
429 }; 433 };
OLDNEW
« no previous file with comments | « content/test/data/accessibility/aria/aria-setsize-expected-win.txt ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698