| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 13 matching lines...) Expand all Loading... |
| 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 /** | 31 /** |
| 32 * @unrestricted | 32 * @unrestricted |
| 33 */ | 33 */ |
| 34 WebInspector.Worker = class { | 34 Common.Worker = class { |
| 35 /** | 35 /** |
| 36 * @param {string} appName | 36 * @param {string} appName |
| 37 */ | 37 */ |
| 38 constructor(appName) { | 38 constructor(appName) { |
| 39 var url = appName + '.js'; | 39 var url = appName + '.js'; |
| 40 var remoteBase = Runtime.queryParam('remoteBase'); | 40 var remoteBase = Runtime.queryParam('remoteBase'); |
| 41 if (remoteBase) | 41 if (remoteBase) |
| 42 url += '?remoteBase=' + remoteBase; | 42 url += '?remoteBase=' + remoteBase; |
| 43 | 43 |
| 44 /** @type {!Promise<!Worker>} */ | 44 /** @type {!Promise<!Worker>} */ |
| 45 this._workerPromise = new Promise(fulfill => { | 45 this._workerPromise = new Promise(fulfill => { |
| 46 this._worker = new Worker(url); | 46 this._worker = new Worker(url); |
| 47 this._worker.onmessage = onMessage.bind(this); | 47 this._worker.onmessage = onMessage.bind(this); |
| 48 | 48 |
| 49 /** | 49 /** |
| 50 * @param {!Event} event | 50 * @param {!Event} event |
| 51 * @this {WebInspector.Worker} | 51 * @this {Common.Worker} |
| 52 */ | 52 */ |
| 53 function onMessage(event) { | 53 function onMessage(event) { |
| 54 console.assert(event.data === 'workerReady'); | 54 console.assert(event.data === 'workerReady'); |
| 55 this._worker.onmessage = null; | 55 this._worker.onmessage = null; |
| 56 fulfill(this._worker); | 56 fulfill(this._worker); |
| 57 // No need to hold a reference to worker anymore as it's stored in | 57 // No need to hold a reference to worker anymore as it's stored in |
| 58 // the resolved promise. | 58 // the resolved promise. |
| 59 this._worker = null; | 59 this._worker = null; |
| 60 } | 60 } |
| 61 }); | 61 }); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 87 this._workerPromise.then(worker => worker.onmessage = listener); | 87 this._workerPromise.then(worker => worker.onmessage = listener); |
| 88 } | 88 } |
| 89 | 89 |
| 90 /** | 90 /** |
| 91 * @param {?function(!Event)} listener | 91 * @param {?function(!Event)} listener |
| 92 */ | 92 */ |
| 93 set onerror(listener) { | 93 set onerror(listener) { |
| 94 this._workerPromise.then(worker => worker.onerror = listener); | 94 this._workerPromise.then(worker => worker.onerror = listener); |
| 95 } | 95 } |
| 96 }; | 96 }; |
| OLD | NEW |