Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-resource.html

Issue 1410153009: DevTools: Make network events continuous on Timeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments #2 Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698