OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 /** @fileoverview Externs generated from namespace: developerPrivate */ | 5 /** @fileoverview Externs generated from namespace: developerPrivate */ |
6 | 6 |
7 /** | 7 /** |
8 * @const | 8 * @const |
9 */ | 9 */ |
10 chrome.developerPrivate = {}; | 10 chrome.developerPrivate = {}; |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 | 612 |
613 /** | 613 /** |
614 * Delete reported extension erors. | 614 * Delete reported extension erors. |
615 * @param {DeleteExtensionErrorsProperties} properties | 615 * @param {DeleteExtensionErrorsProperties} properties |
616 * @param {function():void=} callback | 616 * @param {function():void=} callback |
617 * @see https://developer.chrome.com/extensions/developerPrivate#method-deleteEx
tensionErrors | 617 * @see https://developer.chrome.com/extensions/developerPrivate#method-deleteEx
tensionErrors |
618 */ | 618 */ |
619 chrome.developerPrivate.deleteExtensionErrors = function(properties, callback) {
}; | 619 chrome.developerPrivate.deleteExtensionErrors = function(properties, callback) {
}; |
620 | 620 |
621 /** | 621 /** |
| 622 * Repairs the extension specified. |
| 623 * @param {string} extensionId |
| 624 * @param {function():void=} callback |
| 625 * @see https://developer.chrome.com/extensions/developerPrivate#method-repairEx
tension |
| 626 */ |
| 627 chrome.developerPrivate.repairExtension = function(extensionId, callback) {}; |
| 628 |
| 629 /** |
| 630 * Shows the options page for the extension specified. |
| 631 * @param {string} extensionId |
| 632 * @param {function():void=} callback |
| 633 * @see https://developer.chrome.com/extensions/developerPrivate#method-showOpti
ons |
| 634 */ |
| 635 chrome.developerPrivate.showOptions = function(extensionId, callback) {}; |
| 636 |
| 637 /** |
| 638 * Shows the path of the extension specified. |
| 639 * @param {string} extensionId |
| 640 * @param {function():void=} callback |
| 641 * @see https://developer.chrome.com/extensions/developerPrivate#method-showPath |
| 642 */ |
| 643 chrome.developerPrivate.showPath = function(extensionId, callback) {}; |
| 644 |
| 645 /** |
622 * @param {string} id | 646 * @param {string} id |
623 * @param {boolean} enabled | 647 * @param {boolean} enabled |
624 * @param {function():void=} callback | 648 * @param {function():void=} callback |
625 * @deprecated Use management.setEnabled | 649 * @deprecated Use management.setEnabled |
626 * @see https://developer.chrome.com/extensions/developerPrivate#method-enable | 650 * @see https://developer.chrome.com/extensions/developerPrivate#method-enable |
627 */ | 651 */ |
628 chrome.developerPrivate.enable = function(id, enabled, callback) {}; | 652 chrome.developerPrivate.enable = function(id, enabled, callback) {}; |
629 | 653 |
630 /** | 654 /** |
631 * @param {string} extensionId | 655 * @param {string} extensionId |
(...skipping 20 matching lines...) Expand all Loading... |
652 * @see https://developer.chrome.com/extensions/developerPrivate#method-inspect | 676 * @see https://developer.chrome.com/extensions/developerPrivate#method-inspect |
653 */ | 677 */ |
654 chrome.developerPrivate.inspect = function(options, callback) {}; | 678 chrome.developerPrivate.inspect = function(options, callback) {}; |
655 | 679 |
656 /** | 680 /** |
657 * Fired when a item state is changed. | 681 * Fired when a item state is changed. |
658 * @type {!ChromeEvent} | 682 * @type {!ChromeEvent} |
659 * @see https://developer.chrome.com/extensions/developerPrivate#event-onItemSta
teChanged | 683 * @see https://developer.chrome.com/extensions/developerPrivate#event-onItemSta
teChanged |
660 */ | 684 */ |
661 chrome.developerPrivate.onItemStateChanged; | 685 chrome.developerPrivate.onItemStateChanged; |
OLD | NEW |