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

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

Issue 2447773002: Use setSequentialFocusNavigationStartingPoint in ChromeVox (Closed)
Patch Set: Links or controls 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
538 /** 542 /**
539 * @param {number} start 543 * @param {number} start
540 * @param {number} end 544 * @param {number} end
541 */ 545 */
542 chrome.automation.AutomationNode.prototype.setSelection = 546 chrome.automation.AutomationNode.prototype.setSelection =
543 function(start, end) {}; 547 function(start, end) {};
544 548
545 /** @type {string} */ 549 /** @type {string} */
546 chrome.automation.AutomationNode.prototype.containerLiveStatus; 550 chrome.automation.AutomationNode.prototype.containerLiveStatus;
547 551
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 */ 682 */
679 chrome.automation.AutomationRootNode.prototype.focusObject; 683 chrome.automation.AutomationRootNode.prototype.focusObject;
680 684
681 /** 685 /**
682 * @type {number} 686 * @type {number}
683 */ 687 */
684 chrome.automation.AutomationRootNode.prototype.focusOffset; 688 chrome.automation.AutomationRootNode.prototype.focusOffset;
685 689
686 /** @type {function() : !Object} */ 690 /** @type {function() : !Object} */
687 chrome.app.getDetails; 691 chrome.app.getDetails;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698