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/sources/debugger-ui/execution-context-sorted.html

Issue 2122353002: [DevTools] Make resource tree model optional (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments Created 4 years, 4 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 7958d8407d79bfac136bdf3d4085b32484b857a9..0b2baa52b6ab4c32546900ab57ccb45812f010c7 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(c.target().resourceTreeModel.frameForId(c.frameId).displayName());
+ InspectorTest.addResult(WebInspector.ResourceTreeModel.fromTarget(c.target()).frameForId(c.frameId).displayName());
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698