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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js

Issue 2479893002: Revert of Use setSequentialFocusNavigationStartingPoint in ChromeVox (Closed)
Patch Set: 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
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 5
6 /** 6 /**
7 * @fileoverview Definitions for the Chromium extensions API used by ChromeVox. 7 * @fileoverview Definitions for the Chromium extensions API used by ChromeVox.
8 * 8 *
9 * @externs 9 * @externs
10 */ 10 */
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 528
529 chrome.automation.AutomationNode.prototype.doDefault = function() {}; 529 chrome.automation.AutomationNode.prototype.doDefault = function() {};
530 530
531 531
532 chrome.automation.AutomationNode.prototype.focus = function() {}; 532 chrome.automation.AutomationNode.prototype.focus = function() {};
533 533
534 534
535 chrome.automation.AutomationNode.prototype.showContextMenu = function() {}; 535 chrome.automation.AutomationNode.prototype.showContextMenu = function() {};
536 536
537 537
538 chrome.automation.AutomationNode.prototype
539 .setSequentialFocusNavigationStartingPoint = function() {};
540
541
542 /** 538 /**
543 * @param {number} start 539 * @param {number} start
544 * @param {number} end 540 * @param {number} end
545 */ 541 */
546 chrome.automation.AutomationNode.prototype.setSelection = 542 chrome.automation.AutomationNode.prototype.setSelection =
547 function(start, end) {}; 543 function(start, end) {};
548 544
549 /** @type {string} */ 545 /** @type {string} */
550 chrome.automation.AutomationNode.prototype.containerLiveStatus; 546 chrome.automation.AutomationNode.prototype.containerLiveStatus;
551 547
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 */ 678 */
683 chrome.automation.AutomationRootNode.prototype.focusObject; 679 chrome.automation.AutomationRootNode.prototype.focusObject;
684 680
685 /** 681 /**
686 * @type {number} 682 * @type {number}
687 */ 683 */
688 chrome.automation.AutomationRootNode.prototype.focusOffset; 684 chrome.automation.AutomationRootNode.prototype.focusOffset;
689 685
690 /** @type {function() : !Object} */ 686 /** @type {function() : !Object} */
691 chrome.app.getDetails; 687 chrome.app.getDetails;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698