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

Unified Diff: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js
diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js
index 6ace7a81ecf90893c2e579345a737c37d9494368..309c6695fad77d3714929fd89f46905e88f9dcd8 100644
--- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js
+++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js
@@ -31,7 +31,7 @@
/**
* @unrestricted
*/
-WebInspector.HeapSnapshotWorkerDispatcher = class {
+HeapSnapshotWorker.HeapSnapshotWorkerDispatcher = class {
constructor(globalObject, postMessage) {
this._objects = [];
this._global = globalObject;
@@ -55,7 +55,7 @@ WebInspector.HeapSnapshotWorkerDispatcher = class {
}
dispatchMessage(event) {
- var data = /** @type {!WebInspector.HeapSnapshotCommon.WorkerCommand } */ (event.data);
+ var data = /** @type {!Profiler.HeapSnapshotCommon.WorkerCommand } */ (event.data);
var response = {callId: data.callId};
try {
switch (data.disposition) {

Powered by Google App Engine
This is Rietveld 408576698