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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.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/console-timeline.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html b/third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html
index edaeac3fe6b0a7441725f48ab79a3d143ccd3bae..4b7f23b8c4166876d9141d4c4ed2d39b567be593 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html
@@ -79,8 +79,8 @@ function startTimeline()
function test()
{
- var panel = WebInspector.panels.timeline;
- panel._model._currentTarget = WebInspector.targetManager.mainTarget();
+ var panel = UI.panels.timeline;
+ panel._model._currentTarget = SDK.targetManager.mainTarget();
InspectorTest.runTestSuite([
function testStartStopTimeline(next)
@@ -177,9 +177,9 @@ function test()
{
thread.events().forEach(function(event)
{
- if (event.hasCategory(WebInspector.TimelineModel.Category.Console))
+ if (event.hasCategory(TimelineModel.TimelineModel.Category.Console))
InspectorTest.addResult(event.name);
- else if (event.name === WebInspector.TimelineModel.RecordType.TimeStamp)
+ else if (event.name === TimelineModel.TimelineModel.RecordType.TimeStamp)
InspectorTest.addResult(event.args["data"]["message"]);
});
});

Powered by Google App Engine
This is Rietveld 408576698