Chromium Code Reviews| Index: third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
| index b01d7a4c75fab34ca749eb43e3ef44901ce44167..e14d7a44ca0524e332ba735934f13198df51effb 100644 |
| --- a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
| +++ b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
| @@ -783,11 +783,7 @@ |
| "type": "object", |
| "description": "CPU Profile node. Holds callsite information, execution statistics and child nodes.", |
| "properties": [ |
| - { "name": "functionName", "type": "string", "description": "Function name." }, |
| - { "name": "scriptId", "$ref": "Runtime.ScriptId", "description": "Script identifier." }, |
| - { "name": "url", "type": "string", "description": "URL." }, |
| - { "name": "lineNumber", "type": "integer", "description": "1-based line number of the function start position." }, |
| - { "name": "columnNumber", "type": "integer", "description": "1-based column number of the function start position." }, |
| + { "name": "callFrame", "$ref": "Runtime.CallFrame", "description": "Callsite information." }, |
|
alph
2016/07/14 21:53:29
Technically it's not about a call site as we do no
kozy
2016/07/15 00:19:02
Changed to Function location.
|
| { "name": "hitCount", "type": "integer", "description": "Number of samples where this node was on top of the call stack." }, |
| { "name": "callUID", "type": "number", "description": "Call UID." }, |
| { "name": "children", "type": "array", "items": { "$ref": "CPUProfileNode" }, "description": "Child nodes." }, |
| @@ -878,11 +874,7 @@ |
| "type": "object", |
| "description": "Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes.", |
| "properties": [ |
| - { "name": "functionName", "type": "string", "description": "Function name." }, |
| - { "name": "scriptId", "$ref": "Runtime.ScriptId", "description": "Script identifier." }, |
| - { "name": "url", "type": "string", "description": "URL." }, |
| - { "name": "lineNumber", "type": "integer", "description": "1-based line number of the function start position." }, |
| - { "name": "columnNumber", "type": "integer", "description": "1-based column number of the function start position." }, |
| + { "name": "callFrame", "$ref": "Runtime.CallFrame", "description": "Callsite information." }, |
| { "name": "selfSize", "type": "number", "description": "Allocations size in bytes for the node excluding children." }, |
| { "name": "children", "type": "array", "items": { "$ref": "SamplingHeapProfileNode" }, "description": "Child nodes." } |
| ] |