| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 file was generated by: | 5 // This file was generated by: |
| 6 // tools/json_schema_compiler/compiler.py. | 6 // tools/json_schema_compiler/compiler.py. |
| 7 // NOTE: The format of types has changed. 'FooType' is now | 7 // NOTE: The format of types has changed. 'FooType' is now |
| 8 // 'chrome.automation.FooType'. | 8 // 'chrome.automation.FooType'. |
| 9 // Please run the closure compiler before committing changes. | 9 // Please run the closure compiler before committing changes. |
| 10 // See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_comp
ilation.md | 10 // See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_comp
ilation.md |
| (...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 947 chrome.automation.AutomationNode.prototype.backgroundColor; | 947 chrome.automation.AutomationNode.prototype.backgroundColor; |
| 948 | 948 |
| 949 /** | 949 /** |
| 950 * The RGBA color of an input element whose value is a color. | 950 * The RGBA color of an input element whose value is a color. |
| 951 * @type {(number|undefined)} | 951 * @type {(number|undefined)} |
| 952 * @see https://developer.chrome.com/extensions/automation#type-colorValue | 952 * @see https://developer.chrome.com/extensions/automation#type-colorValue |
| 953 */ | 953 */ |
| 954 chrome.automation.AutomationNode.prototype.colorValue; | 954 chrome.automation.AutomationNode.prototype.colorValue; |
| 955 | 955 |
| 956 /** | 956 /** |
| 957 * Indicates node text is bold. |
| 958 * @type {boolean} |
| 959 * @see https://developer.chrome.com/extensions/automation#type-bold |
| 960 */ |
| 961 chrome.automation.AutomationNode.prototype.bold; |
| 962 |
| 963 /** |
| 964 * Indicates node text is italic. |
| 965 * @type {boolean} |
| 966 * @see https://developer.chrome.com/extensions/automation#type-italic |
| 967 */ |
| 968 chrome.automation.AutomationNode.prototype.italic; |
| 969 |
| 970 /** |
| 971 * Indicates node text is underline. |
| 972 * @type {boolean} |
| 973 * @see https://developer.chrome.com/extensions/automation#type-underline |
| 974 */ |
| 975 chrome.automation.AutomationNode.prototype.underline; |
| 976 |
| 977 /** |
| 978 * Indicates node text is line through. |
| 979 * @type {boolean} |
| 980 * @see https://developer.chrome.com/extensions/automation#type-lineThrough |
| 981 */ |
| 982 chrome.automation.AutomationNode.prototype.lineThrough; |
| 983 |
| 984 /** |
| 957 * Walking the tree. | 985 * Walking the tree. |
| 958 * @type {!Array<!chrome.automation.AutomationNode>} | 986 * @type {!Array<!chrome.automation.AutomationNode>} |
| 959 * @see https://developer.chrome.com/extensions/automation#type-children | 987 * @see https://developer.chrome.com/extensions/automation#type-children |
| 960 */ | 988 */ |
| 961 chrome.automation.AutomationNode.prototype.children; | 989 chrome.automation.AutomationNode.prototype.children; |
| 962 | 990 |
| 963 /** | 991 /** |
| 964 * @type {(!chrome.automation.AutomationNode|undefined)} | 992 * @type {(!chrome.automation.AutomationNode|undefined)} |
| 965 * @see https://developer.chrome.com/extensions/automation#type-parent | 993 * @see https://developer.chrome.com/extensions/automation#type-parent |
| 966 */ | 994 */ |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1215 * tree between the two node/offset pairs gets included in the selection. The | 1243 * tree between the two node/offset pairs gets included in the selection. The |
| 1216 * anchor is where the user started the selection, while the focus is the point | 1244 * anchor is where the user started the selection, while the focus is the point |
| 1217 * at which the selection gets extended e.g. when dragging with a mouse or using | 1245 * at which the selection gets extended e.g. when dragging with a mouse or using |
| 1218 * the keyboard. For nodes with the role staticText, the offset gives the | 1246 * the keyboard. For nodes with the role staticText, the offset gives the |
| 1219 * character offset within the value where the selection starts or ends, | 1247 * character offset within the value where the selection starts or ends, |
| 1220 * respectively. | 1248 * respectively. |
| 1221 * @param {!chrome.automation.SetDocumentSelectionParams} params | 1249 * @param {!chrome.automation.SetDocumentSelectionParams} params |
| 1222 * @see https://developer.chrome.com/extensions/automation#method-setDocumentSel
ection | 1250 * @see https://developer.chrome.com/extensions/automation#method-setDocumentSel
ection |
| 1223 */ | 1251 */ |
| 1224 chrome.automation.setDocumentSelection = function(params) {}; | 1252 chrome.automation.setDocumentSelection = function(params) {}; |
| OLD | NEW |