| 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) {
|
|
|