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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/common/Worker.js

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots 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 /* 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
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698