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

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

Issue 2290763002: Sync up two accessibility enum files: ax_enums.idl and automation.idl (Closed)
Patch Set: 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
« ui/accessibility/PRESUBMIT.py ('K') | « ui/accessibility/PRESUBMIT.py ('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
11 // chrome/common/extensions/api/automation.idl. 11 // chrome/common/extensions/api/automation.idl. This is enforced
12 // by a PRESUBMIT check.
12 // 13 //
13 // Explanation of the comments next to these events: 14 // Explanation of the comments next to these events:
14 // 15 //
15 // Web: this event is only used in web content. Unless a specific platform 16 // Web: this event is only used in web content. Unless a specific platform
16 // is specified, it fires a native event on multiple platforms. 17 // is specified, it fires a native event on multiple platforms.
17 // 18 //
18 // Native: this event is only used in native UI. 19 // Native: this event is only used in native UI.
19 // 20 //
20 // Implicit: it would be cleaner if we just updated the AX node 21 // Implicit: it would be cleaner if we just updated the AX node
21 // and each platform fired the appropriate events to indicate which 22 // and each platform fired the appropriate events to indicate which
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 // First node is before the second one. 536 // First node is before the second one.
536 before, 537 before,
537 538
538 // Nodes are the same. 539 // Nodes are the same.
539 equal, 540 equal,
540 541
541 // First node is after the second one. 542 // First node is after the second one.
542 after 543 after
543 }; 544 };
544 }; 545 };
OLDNEW
« ui/accessibility/PRESUBMIT.py ('K') | « ui/accessibility/PRESUBMIT.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698