| Index: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
|
| index 7147302cf9e92cfd925e05ee6fbc2606a7f0070d..a39ca70e3197893ff6a40d66221f89a661c62984 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
|
| @@ -36,13 +36,14 @@
|
| */
|
| WebInspector.JSHeapSnapshot = function(profile, progress)
|
| {
|
| + WebInspector.HeapSnapshot.call(this, profile, progress);
|
| this._nodeFlags = { // bit flags
|
| canBeQueried: 1,
|
| detachedDOMTreeNode: 2,
|
| pageObject: 4 // The idea is to track separately the objects owned by the page and the objects owned by debugger.
|
| };
|
| + this.initialize();
|
| this._lazyStringCache = {};
|
| - WebInspector.HeapSnapshot.call(this, profile, progress);
|
| };
|
|
|
| WebInspector.JSHeapSnapshot.prototype = {
|
|
|