| 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}`);
|
|
|