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

Unified Diff: Source/devtools/front_end/WorkerManager.js

Issue 201123007: DevTools: Create target per each worker behind experiment (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase on master Created 6 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/Target.js ('k') | Source/devtools/front_end/WorkerTargetManager.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/WorkerManager.js
diff --git a/Source/devtools/front_end/WorkerManager.js b/Source/devtools/front_end/WorkerManager.js
index 474ce8b43a96edad23edf735797b2fa03e384f02..221228fa7fda26d5c098503e7d37d6379f76a0a1 100644
--- a/Source/devtools/front_end/WorkerManager.js
+++ b/Source/devtools/front_end/WorkerManager.js
@@ -173,7 +173,7 @@ WebInspector.workerManager;
* @extends {InspectorBackendClass.Connection}
* @param {string} workerId
*/
-WebInspector.WorkerConnection = function(workerId, onConnectionReady)
+WebInspector.ExternalWorkerConnection = function(workerId, onConnectionReady)
{
InspectorBackendClass.Connection.call(this);
this._workerId = workerId;
@@ -181,7 +181,7 @@ WebInspector.WorkerConnection = function(workerId, onConnectionReady)
onConnectionReady(this);
}
-WebInspector.WorkerConnection.prototype = {
+WebInspector.ExternalWorkerConnection.prototype = {
/**
* @param {?Event} event
@@ -204,4 +204,4 @@ WebInspector.WorkerConnection.prototype = {
},
__proto__: InspectorBackendClass.Connection.prototype
-}
+}
« no previous file with comments | « Source/devtools/front_end/Target.js ('k') | Source/devtools/front_end/WorkerTargetManager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698