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

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: Address vsevik's comments 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
Index: Source/devtools/front_end/WorkerManager.js
diff --git a/Source/devtools/front_end/WorkerManager.js b/Source/devtools/front_end/WorkerManager.js
index 29c56dca4026121c8b9f824141de274f5cbe4d34..a8fcbbb5083e4a7b097bc93087358699293ccb21 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
-}
+}

Powered by Google App Engine
This is Rietveld 408576698