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

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

Issue 2799413002: Views a11y: Add AXNodeData.actions bitfield to indicate supported actions by UI. (Closed)
Patch Set: Fix tests broken from rebase. Created 3 years, 7 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 // TODO(nektar): Migrate entire file to Mojoq. 5 // TODO(nektar): Migrate entire file to Mojoq.
6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
7 // until the Chromium and Blink trees are merged. 7 // until the Chromium and Blink trees are merged.
8 [camel_case_enum_to_string=true] namespace ui { 8 [camel_case_enum_to_string=true] namespace ui {
9 9
10 // For new entries to the following four enums, also add to 10 // For new entries to the following four enums, also add to
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 container_live_busy, 463 container_live_busy,
464 live_atomic, 464 live_atomic,
465 live_busy, 465 live_busy,
466 466
467 // If a dialog box is marked as explicitly modal 467 // If a dialog box is marked as explicitly modal
468 modal, 468 modal,
469 469
470 // ARIA readonly flag. 470 // ARIA readonly flag.
471 aria_readonly, 471 aria_readonly,
472 472
473 // Writeable attributes
474 can_set_value,
475
476 // If this is set, all of the other fields in this struct should 473 // If this is set, all of the other fields in this struct should
477 // be ignored and only the locations should change. 474 // be ignored and only the locations should change.
478 update_location_only, 475 update_location_only,
479 476
480 // Set on a canvas element if it has fallback content. 477 // Set on a canvas element if it has fallback content.
481 canvas_has_fallback 478 canvas_has_fallback
482 }; 479 };
483 480
484 [cpp_enum_prefix_override="ax_attr"] enum AXIntListAttribute { 481 [cpp_enum_prefix_override="ax_attr"] enum AXIntListAttribute {
485 // Ids of nodes that are children of this node logically, but are 482 // Ids of nodes that are children of this node logically, but are
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 // First node is before the second one. 662 // First node is before the second one.
666 before, 663 before,
667 664
668 // Nodes are the same. 665 // Nodes are the same.
669 equal, 666 equal,
670 667
671 // First node is after the second one. 668 // First node is after the second one.
672 after 669 after
673 }; 670 };
674 }; 671 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698