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

Unified Diff: LayoutTests/inspector/timeline/tracing/decode-resize.html

Issue 318343003: Move trace event based implementation parts of TimelineModel into TracingTimelineModel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/tracing/decode-resize.html
diff --git a/LayoutTests/inspector/timeline/tracing/decode-resize.html b/LayoutTests/inspector/timeline/tracing/decode-resize.html
index ea13e5173e3dc8382d6addd0c3eb954817a1fd33..0332452bf8d999738c3da6a1c4e60885d3bc2546 100644
--- a/LayoutTests/inspector/timeline/tracing/decode-resize.html
+++ b/LayoutTests/inspector/timeline/tracing/decode-resize.html
@@ -58,12 +58,9 @@ function test()
var imageCount = 0;
InspectorTest.invokeWithTracing("-*,devtools,disabled-by-default-devtools.timeline*", "showImages", onTracingComplete);
- var tracineTimelineModel = new WebInspector.TracingTimelineModel(InspectorTest.tracingModel);
- tracineTimelineModel.willStartRecordingTraceEvents();
function onTracingComplete()
{
- tracineTimelineModel.didStopRecordingTraceEvents();
- var events = tracineTimelineModel.inspectedTargetEvents();
+ var events = InspectorTest.tracingTimelineModel.inspectedTargetEvents();
for (var i = 0; i < events.length; ++i) {
var event = events[i];
if (events[i].name !== WebInspector.TracingTimelineModel.RecordType.DecodeImage)

Powered by Google App Engine
This is Rietveld 408576698