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

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

Issue 2080573003: Track all changed nodes during an update (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make suggested change. Created 4 years, 3 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
« no previous file with comments | « content/renderer/accessibility/render_accessibility_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 three enums, also add to 10 // For new entries to the following three enums, also add to
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 }; 497 };
498 498
499 enum AXDescriptionFrom { 499 enum AXDescriptionFrom {
500 uninitialized, 500 uninitialized,
501 attribute, 501 attribute,
502 contents, 502 contents,
503 placeholder, 503 placeholder,
504 related_element 504 related_element
505 }; 505 };
506 506
507 enum AXEventFrom {
508 user,
509 page,
510 action
511 };
512
507 // Touch gestures on Chrome OS. 513 // Touch gestures on Chrome OS.
508 enum AXGesture { 514 enum AXGesture {
509 click, 515 click,
510 swipe_left_1, 516 swipe_left_1,
511 swipe_up_1, 517 swipe_up_1,
512 swipe_right_1, 518 swipe_right_1,
513 swipe_down_1, 519 swipe_down_1,
514 swipe_left_2, 520 swipe_left_2,
515 swipe_up_2, 521 swipe_up_2,
516 swipe_right_2, 522 swipe_right_2,
(...skipping 21 matching lines...) Expand all
538 // First node is before the second one. 544 // First node is before the second one.
539 before, 545 before,
540 546
541 // Nodes are the same. 547 // Nodes are the same.
542 equal, 548 equal,
543 549
544 // First node is after the second one. 550 // First node is after the second one.
545 after 551 after
546 }; 552 };
547 }; 553 };
OLDNEW
« no previous file with comments | « content/renderer/accessibility/render_accessibility_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698