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: LayoutTests/inspector/tracing/decode-resize.html

Issue 715803002: DevTools: merge TracingTimelineModel into TimelineModel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: LayoutTests/inspector/tracing/decode-resize.html
diff --git a/LayoutTests/inspector/tracing/decode-resize.html b/LayoutTests/inspector/tracing/decode-resize.html
index 1db1b85223cbd04d39d857798bc6d9dc8c1e092c..486045740b299e7373d644a65eb3b4e902f558e8 100644
--- a/LayoutTests/inspector/tracing/decode-resize.html
+++ b/LayoutTests/inspector/tracing/decode-resize.html
@@ -63,7 +63,7 @@ function test()
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)
+ if (events[i].name !== WebInspector.TimelineModel.RecordType.DecodeImage)
continue;
InspectorTest.addResult("event: " + event.name);
InspectorTest.addResult("imageURL: " + InspectorTest.formatters.formatAsURL(event.imageURL));

Powered by Google App Engine
This is Rietveld 408576698