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

Unified Diff: LayoutTests/inspector/timeline-dfs.html

Issue 183893010: DevTools: extract TimelineModel.Record from TimelinePresentationModel.Record. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: For landing Created 6 years, 10 months 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: LayoutTests/inspector/timeline-dfs.html
diff --git a/LayoutTests/inspector/timeline-dfs.html b/LayoutTests/inspector/timeline-dfs.html
index bee15285efddf33577f2b1d24d34eb0254581fec..e09afadf1f3f7aedad943647c2509e021389e0b8 100644
--- a/LayoutTests/inspector/timeline-dfs.html
+++ b/LayoutTests/inspector/timeline-dfs.html
@@ -36,17 +36,17 @@ var test = function()
];
InspectorTest.addResult("DFS preorder:");
- WebInspector.TimelinePresentationModel.forAllRecords(records, dumper);
+ WebInspector.TimelineModel.forAllRecords(records, dumper);
InspectorTest.addResult("");
InspectorTest.addResult("DFS postorder:");
- WebInspector.TimelinePresentationModel.forAllRecords(records, null, dumper);
+ WebInspector.TimelineModel.forAllRecords(records, null, dumper);
InspectorTest.completeTest();
}
</script>
</head>
<body onload="runTest()">
-<p>Tests TimelinePresentationModel.forAllRecords function.</p>
+<p>Tests TimelineModel.forAllRecords function.</p>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698