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

Side by Side Diff: chrome/common/extensions/api/automation_internal.idl

Issue 2522033002: Generalized fix for serialization error/reset issues (Closed)
Patch Set: Fix test. Created 4 years, 1 month 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 | « no previous file | chrome/renderer/extensions/automation_internal_custom_bindings.cc » ('j') | 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 // 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 static void onAccessibilityTreeDestroyed(long treeID); 107 static void onAccessibilityTreeDestroyed(long treeID);
108 108
109 static void onTreeChange(long observerID, 109 static void onTreeChange(long observerID,
110 long treeID, 110 long treeID,
111 long nodeID, 111 long nodeID,
112 DOMString changeType); 112 DOMString changeType);
113 113
114 static void onChildTreeID(long treeID, long nodeID); 114 static void onChildTreeID(long treeID, long nodeID);
115 115
116 static void onNodesRemoved(long treeID, long[] nodeIDs); 116 static void onNodesRemoved(long treeID, long[] nodeIDs);
117
118 static void onAccessibilityTreeSerializationError(long treeID);
117 }; 119 };
118 }; 120 };
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/extensions/automation_internal_custom_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698