OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <include src="extension_error.js"> | 5 <include src="extension_error.js"> |
6 | 6 |
7 /** | 7 /** |
8 * The type of the extension data object. The definition is based on | 8 * The type of the extension data object. The definition is based on |
9 * chrome/browser/ui/webui/extensions/extension_basic_info.cc | 9 * chrome/browser/ui/webui/extensions/extension_basic_info.cc |
10 * and | 10 * and |
(...skipping 23 matching lines...) Expand all Loading... |
34 * isFromStore: boolean, | 34 * isFromStore: boolean, |
35 * isUnpacked: boolean, | 35 * isUnpacked: boolean, |
36 * kioskEnabled: boolean, | 36 * kioskEnabled: boolean, |
37 * kioskOnly: boolean, | 37 * kioskOnly: boolean, |
38 * locationText: string, | 38 * locationText: string, |
39 * managedInstall: boolean, | 39 * managedInstall: boolean, |
40 * manifestErrors: (Array.<RuntimeError>|undefined), | 40 * manifestErrors: (Array.<RuntimeError>|undefined), |
41 * name: string, | 41 * name: string, |
42 * offlineEnabled: boolean, | 42 * offlineEnabled: boolean, |
43 * optionsOpenInTab: boolean, | 43 * optionsOpenInTab: boolean, |
| 44 * optionsPageHref: string, |
44 * optionsUrl: string, | 45 * optionsUrl: string, |
45 * order: number, | 46 * order: number, |
46 * packagedApp: boolean, | 47 * packagedApp: boolean, |
47 * path: (string|undefined), | 48 * path: (string|undefined), |
48 * prettifiedPath: (string|undefined), | 49 * prettifiedPath: (string|undefined), |
49 * recommendedInstall: boolean, | 50 * recommendedInstall: boolean, |
50 * runtimeErrors: (Array.<RuntimeError>|undefined), | 51 * runtimeErrors: (Array.<RuntimeError>|undefined), |
51 * suspiciousInstall: boolean, | 52 * suspiciousInstall: boolean, |
52 * terminated: boolean, | 53 * terminated: boolean, |
53 * version: string, | 54 * version: string, |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 $('overlay').addEventListener('cancelOverlay', function() { | 553 $('overlay').addEventListener('cancelOverlay', function() { |
553 this.optionsShown_ = false; | 554 this.optionsShown_ = false; |
554 }.bind(this)); | 555 }.bind(this)); |
555 }, | 556 }, |
556 }; | 557 }; |
557 | 558 |
558 return { | 559 return { |
559 ExtensionsList: ExtensionsList | 560 ExtensionsList: ExtensionsList |
560 }; | 561 }; |
561 }); | 562 }); |
OLD | NEW |