| Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-resource.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-resource.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-resource.html
|
| index 8091c8ef356e3787639dd7027de4521ffaaa07c1..6b6de1c92db4ce1146f07abeab33801fe7c6aba6 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-resource.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-resource.html
|
| @@ -29,11 +29,11 @@ function test()
|
| var lastRecordStartTime;
|
| function format(record)
|
| {
|
| - if (record.type() === WebInspector.TimelineModel.RecordType.ResourceSendRequest)
|
| + if (record.type() === WebInspector.TimelineModel.RecordType.ResourceFetcherRequestResource)
|
| printSend(record);
|
| - else if (record.type() === WebInspector.TimelineModel.RecordType.ResourceReceiveResponse)
|
| + else if (record.type() === WebInspector.TimelineModel.RecordType.ResourceDispatcherOnReceivedResponse)
|
| printReceive(record);
|
| - else if (record.type() === WebInspector.TimelineModel.RecordType.ResourceFinish)
|
| + else if (record.type() === WebInspector.TimelineModel.RecordType.ResourceDispatcherOnRequestComplete)
|
| printFinish(record);
|
|
|
| var presentationRecord = presentationModel.toPresentationRecord(record);
|
|
|