| OLD | NEW |
| 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 Loading... |
| 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 }; |
| OLD | NEW |