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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/category-filter.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/category-filter.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/category-filter.html b/third_party/WebKit/LayoutTests/inspector/tracing/category-filter.html
index f0248ed0e70c592b8e0ca7223ce904308c8c4f9f..382c07dc7fd874148cc43a41686257368dae7749 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/category-filter.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/category-filter.html
@@ -36,8 +36,8 @@ function test()
];
var model = InspectorTest.createTimelineModelWithEvents(testData);
- var view = new WebInspector.EventsTimelineTreeView(model, WebInspector.panels.timeline._filters, null);
- view.updateContents(WebInspector.TimelineSelection.fromRange(model.minimumRecordTime(), model.maximumRecordTime()));
+ var view = new Timeline.EventsTimelineTreeView(model, UI.panels.timeline._filters, null);
+ view.updateContents(Timeline.TimelineSelection.fromRange(model.minimumRecordTime(), model.maximumRecordTime()));
var filtersControl = view._filtersControl;
InspectorTest.addResult("Original records");
@@ -45,12 +45,12 @@ function test()
dumpVisibleRecords();
InspectorTest.addResult("Visible records when 'loading' is disabled");
- WebInspector.TimelineUIUtils.categories().loading.hidden = true;
+ Timeline.TimelineUIUtils.categories().loading.hidden = true;
filtersControl._notifyFiltersChanged();
dumpVisibleRecords();
InspectorTest.addResult("Visible records when 'scripting' is disabled");
- WebInspector.TimelineUIUtils.categories().scripting.hidden = true;
+ Timeline.TimelineUIUtils.categories().scripting.hidden = true;
filtersControl._notifyFiltersChanged();
dumpVisibleRecords();

Powered by Google App Engine
This is Rietveld 408576698