| 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 // This is the implementation layer of the chrome.automation API, and is | 5 // This is the implementation layer of the chrome.automation API, and is |
| 6 // essentially a translation of the internal accessibility tree update system | 6 // essentially a translation of the internal accessibility tree update system |
| 7 // into an extension API. | 7 // into an extension API. |
| 8 namespace automationInternal { | 8 namespace automationInternal { |
| 9 // Data for an accessibility event and/or an atomic change to an accessibility | 9 // Data for an accessibility event and/or an atomic change to an accessibility |
| 10 // tree. See ui/accessibility/ax_tree_update.h for an extended explanation of | 10 // tree. See ui/accessibility/ax_tree_update.h for an extended explanation of |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 static void onAccessibilityTreeDestroyed(long treeID); | 101 static void onAccessibilityTreeDestroyed(long treeID); |
| 102 | 102 |
| 103 static void onTreeChange(long observerID, | 103 static void onTreeChange(long observerID, |
| 104 long treeID, | 104 long treeID, |
| 105 long nodeID, | 105 long nodeID, |
| 106 DOMString changeType); | 106 DOMString changeType); |
| 107 | 107 |
| 108 static void onChildTreeID(long treeID, long nodeID); | 108 static void onChildTreeID(long treeID, long nodeID); |
| 109 | 109 |
| 110 static void onNodesRemoved(long treeID, long[] nodeIDs); | 110 static void onNodesRemoved(long treeID, long[] nodeIDs); |
| 111 |
| 112 static void onAccessibilityTreeSerializationError(long treeID); |
| 111 }; | 113 }; |
| 112 }; | 114 }; |
| OLD | NEW |