Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js |
| index 24404a69af4658c21ddcf269d3be7de690311cc2..a34972c5b2d269e8a41667c3fbcefcedae0a51e2 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js |
| @@ -221,7 +221,7 @@ WebInspector.SamplingHeapProfileHeader.prototype = { |
| */ |
| WebInspector.SamplingHeapProfileNode = function(node) |
| { |
| - WebInspector.ProfileNode.call(this, node.functionName, node.scriptId, node.url, node.lineNumber, node.columnNumber); |
| + WebInspector.ProfileNode.call(this, node.callFrame); |
|
alph
2016/07/14 17:56:00
I guess we need to retain backward compatibility i
kozy
2016/07/14 21:35:04
Done.
|
| this.self = node.selfSize; |
| this.callUID = `${this.frame.functionName}@${this.frame.scriptId}:${this.frame.lineNumber}`; |
| } |