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

Unified Diff: third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-large-tree-search.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/profiler/cpu-profiler-bottom-up-large-tree-search.html
diff --git a/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-large-tree-search.html b/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-large-tree-search.html
index 14a779b071c63660340b966c23e98eade3564926..bf0e2a95b151250513372f664c0c3bd124010807 100644
--- a/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-large-tree-search.html
+++ b/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-large-tree-search.html
@@ -31,7 +31,7 @@ function test()
var profileAndExpectations = {
"title": "profile1",
"target": function() {
- return WebInspector.targetManager.targets()[0];
+ return SDK.targetManager.targets()[0];
},
"_profile": {
"nodes": [
@@ -64,13 +64,13 @@ function test()
"endTime": nodesCount * 10e3 + 3e3
}
};
- var view = new WebInspector.CPUProfileView(profileAndExpectations);
+ var view = new Profiler.CPUProfileView(profileAndExpectations);
view.viewSelectComboBox.setSelectedIndex(1);
view._changeView();
var tree = view.profileDataGridTree;
if (!tree)
InspectorTest.addResult("no tree");
- tree.performSearch(new WebInspector.SearchableView.SearchConfig("foo12", true, false), false);
+ tree.performSearch(new UI.SearchableView.SearchConfig("foo12", true, false), false);
for (var item of tree._searchResults) {
var node = item.profileNode;
InspectorTest.addResult(`${node.callUID}: ${node.functionName} ${node.self} ${node.total}`);

Powered by Google App Engine
This is Rietveld 408576698