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 43a5de8aeef22ec968d853201077cc4f9f38ef82..97fdcddd7896d2586ca4a881306b307e2c527236 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
+++ b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
@@ -791,10 +791,10 @@ |
"description": "Profile.", |
"properties": [ |
{ "name": "nodes", "type": "array", "items": { "$ref": "CPUProfileNode" }, "description": "The list of profile nodes. First item is the root node." }, |
- { "name": "startTime", "type": "number", "description": "Profiling start time in seconds." }, |
- { "name": "endTime", "type": "number", "description": "Profiling end time in seconds." }, |
+ { "name": "startTime", "type": "number", "description": "Profiling start timestamp in microseconds." }, |
+ { "name": "endTime", "type": "number", "description": "Profiling end timestamp in microseconds." }, |
{ "name": "samples", "optional": true, "type": "array", "items": { "type": "integer" }, "description": "Ids of samples top nodes." }, |
- { "name": "timestamps", "optional": true, "type": "array", "items": { "type": "number" }, "description": "Timestamps of the samples in microseconds." } |
+ { "name": "timestampDeltas", "optional": true, "type": "array", "items": { "type": "integer" }, "description": "Deltas between adjacent sample timestamps in microseconds. The first delta is relative to the profile startTime." } |
] |
}, |
{ |