OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 10 matching lines...) Expand all Loading... |
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
| 31 |
| 32 importScript("ExtensionAPI.js"); |
| 33 importScript("ExtensionRegistryStub.js"); |
| 34 importScript("ExtensionAuditCategory.js"); |
| 35 |
31 /** | 36 /** |
32 * @constructor | 37 * @constructor |
33 * @implements {WebInspector.ExtensionServerAPI} | 38 * @implements {WebInspector.ExtensionServerAPI} |
34 */ | 39 */ |
35 WebInspector.ExtensionServer = function() | 40 WebInspector.ExtensionServer = function() |
36 { | 41 { |
37 this._clientObjects = {}; | 42 this._clientObjects = {}; |
38 this._handlers = {}; | 43 this._handlers = {}; |
39 this._subscribers = {}; | 44 this._subscribers = {}; |
40 this._subscriptionStartHandlers = {}; | 45 this._subscriptionStartHandlers = {}; |
(...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1088 this.E_FAILED = makeStatus.bind(null, "E_FAILED", "Operation failed: %s"); | 1093 this.E_FAILED = makeStatus.bind(null, "E_FAILED", "Operation failed: %s"); |
1089 } | 1094 } |
1090 | 1095 |
1091 /** | 1096 /** |
1092 * @typedef {{code: string, description: string, details: !Array.<*>}} | 1097 * @typedef {{code: string, description: string, details: !Array.<*>}} |
1093 */ | 1098 */ |
1094 WebInspector.ExtensionStatus.Record; | 1099 WebInspector.ExtensionStatus.Record; |
1095 | 1100 |
1096 WebInspector.extensionAPI = {}; | 1101 WebInspector.extensionAPI = {}; |
1097 defineCommonExtensionSymbols(WebInspector.extensionAPI); | 1102 defineCommonExtensionSymbols(WebInspector.extensionAPI); |
| 1103 |
| 1104 importScript("ExtensionPanel.js"); |
| 1105 importScript("ExtensionView.js"); |
OLD | NEW |