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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 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-paint/paint-profiler-update.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html
index 34142ec6e26ac3368c2b859a9f3a12d7425a7d3b..c35ae02d9a10f5384dab531a851167fa2675ecee 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html
@@ -26,7 +26,7 @@ function performActions()
function test()
{
- var panel = WebInspector.panels.timeline;
+ var panel = UI.panels.timeline;
panel._captureLayersAndPicturesSetting.set(true);
panel._onModeChanged();
@@ -37,9 +37,9 @@ function test()
{
var events = InspectorTest.timelineModel()._mainThreadEvents;
for (var event of events) {
- if (event.name === WebInspector.TimelineModel.RecordType.Paint) {
+ if (event.name === TimelineModel.TimelineModel.RecordType.Paint) {
paintEvents.push(event);
- if (!WebInspector.TimelineData.forEvent(event).picture)
+ if (!TimelineModel.TimelineData.forEvent(event).picture)
InspectorTest.addResult("Event without picture at " + paintEvents.length);
}
}
@@ -48,7 +48,7 @@ function test()
throw new Error("FAIL: Expect at least two paint events");
InspectorTest.addSniffer(panel, "_appendDetailsTabsForTraceEventAndShowDetails", onRecordDetailsReady, false);
- panel.select(WebInspector.TimelineSelection.fromTraceEvent(paintEvents[0]), WebInspector.TimelinePanel.DetailsTab.PaintProfiler);
+ panel.select(Timeline.TimelineSelection.fromTraceEvent(paintEvents[0]), Timeline.TimelinePanel.DetailsTab.PaintProfiler);
}
function onRecordDetailsReady()
@@ -67,7 +67,7 @@ function test()
if (updateCount++)
InspectorTest.completeTest();
else
- panel.select(WebInspector.TimelineSelection.fromTraceEvent(paintEvents[1]), WebInspector.TimelinePanel.DetailsTab.PaintProfiler);
+ panel.select(Timeline.TimelineSelection.fromTraceEvent(paintEvents[1]), Timeline.TimelinePanel.DetailsTab.PaintProfiler);
}
}

Powered by Google App Engine
This is Rietveld 408576698