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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/execution-context-sorted.html

Issue 2782773002: [DevTools] Remove SDKModels' fromTarget methods (Closed)
Patch Set: addressed review comments Created 3 years, 9 months 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/sources/debugger-ui/execution-context-sorted.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/execution-context-sorted.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/execution-context-sorted.html
index 6180e4110d1d781109346f4348d558f337bb0fc5..c337ee2465322544548d014902e88eb5bea9796d 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/execution-context-sorted.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/execution-context-sorted.html
@@ -7,7 +7,7 @@ function test()
{
var contexts = InspectorTest.runtimeModel.executionContexts();
for (var c of contexts)
- InspectorTest.addResult(SDK.ResourceTreeModel.fromTarget(c.target()).frameForId(c.frameId).displayName());
+ InspectorTest.addResult(InspectorTest.resourceTreeModel.frameForId(c.frameId).displayName());
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698