| 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 5b2303edfaaa4f8c386a2cfca2f7d252754bc09d..40f7ed63f20b6b699ee80f53c6603b0a8f8aab12 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." }
|
| ]
|
| },
|
| {
|
|
|