| Index: third_party/closure_compiler/externs/automation.js | 
| diff --git a/third_party/closure_compiler/externs/automation.js b/third_party/closure_compiler/externs/automation.js | 
| index 0a3a0fcb588fa2177cc9019933ac9e3bc24d4f21..0ce3d29bd4281bf92a3346229e99af5774853432 100644 | 
| --- a/third_party/closure_compiler/externs/automation.js | 
| +++ b/third_party/closure_compiler/externs/automation.js | 
| @@ -78,6 +78,7 @@ chrome.automation.RoleType = { | 
| ABBR: 'abbr', | 
| ALERT_DIALOG: 'alertDialog', | 
| ALERT: 'alert', | 
| +  ANCHOR: 'anchor', | 
| ANNOTATION: 'annotation', | 
| APPLICATION: 'application', | 
| ARTICLE: 'article', | 
| @@ -261,7 +262,7 @@ chrome.automation.NameFromType = { | 
| ATTRIBUTE: 'attribute', | 
| CONTENTS: 'contents', | 
| PLACEHOLDER: 'placeholder', | 
| -  RELATED_ELEMENT: 'related_element', | 
| +  RELATED_ELEMENT: 'relatedElement', | 
| VALUE: 'value', | 
| }; | 
|  | 
| @@ -517,6 +518,13 @@ chrome.automation.AutomationNode.prototype.labelledBy; | 
| chrome.automation.AutomationNode.prototype.activeDescendant; | 
|  | 
| /** | 
| + * The target of an in-page link. | 
| + * @type {(!chrome.automation.AutomationNode|undefined)} | 
| + * @see https://developer.chrome.com/extensions/automation#type-inPageLinkTarget | 
| + */ | 
| +chrome.automation.AutomationNode.prototype.inPageLinkTarget; | 
| + | 
| +/** | 
| * The URL that this link will navigate to. | 
| * @type {(string|undefined)} | 
| * @see https://developer.chrome.com/extensions/automation#type-url | 
| @@ -1121,8 +1129,8 @@ chrome.automation.AutomationNode.prototype.matches = function(params) {}; | 
| * placeholder root node; listen for the "loadComplete" event to get a | 
| * notification that the tree has fully loaded (the previous root node reference | 
| * will stop working at or before this point). | 
| - * @param {number} tabId | 
| - * @param {function(!chrome.automation.AutomationNode):void} callback Called | 
| + * @param {number=} tabId | 
| + * @param {function(!chrome.automation.AutomationNode):void=} callback Called | 
| *     when the <code>AutomationNode</code> for the page is available. | 
| * @see https://developer.chrome.com/extensions/automation#method-getTree | 
| */ | 
|  |