| Index: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js
|
| index 637394a07ec81b146ca13d2b54f49e9aa025c728..bb235a5d0aa6bf982b3d8f90eb9ee178ef7df591 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js
|
| @@ -36,7 +36,7 @@ WebInspector.HeapSnapshotLoader = function(dispatcher)
|
| {
|
| this._reset();
|
| this._progress = new WebInspector.HeapSnapshotProgress(dispatcher);
|
| -}
|
| +};
|
|
|
| WebInspector.HeapSnapshotLoader.prototype = {
|
| dispose: function()
|
| @@ -312,4 +312,4 @@ WebInspector.HeapSnapshotLoader.prototype = {
|
| this._state = "find-nodes";
|
| this._snapshot.snapshot = /** @type {!HeapSnapshotHeader} */ (JSON.parse(data));
|
| }
|
| -}
|
| +};
|
|
|