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

Unified Diff: LayoutTests/inspector/sources/sources-panel-extension-names.html

Issue 881263002: DevTools: use target-based model accessors only. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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: LayoutTests/inspector/sources/sources-panel-extension-names.html
diff --git a/LayoutTests/inspector/sources/sources-panel-extension-names.html b/LayoutTests/inspector/sources/sources-panel-extension-names.html
index 1be3a4886091b26f281e57e0412b193b4afebb43..e71babe06274b049a5e319ed3ebff0656152ca7a 100644
--- a/LayoutTests/inspector/sources/sources-panel-extension-names.html
+++ b/LayoutTests/inspector/sources/sources-panel-extension-names.html
@@ -24,17 +24,17 @@ function test()
var contentProvider = new WebInspector.StaticContentProvider(WebInspector.resourceTypes.Script, "");
WebInspector.networkProject.addFileForURL(mockContentScriptURL, contentProvider, true);
InspectorTest.dumpNavigatorView(contentScriptsNavigatorView, "contentScripts", " ");
- WebInspector.runtimeModel._executionContextCreated(mockExecutionContext);
+ InspectorTest.runtimeModel._executionContextCreated(mockExecutionContext);
InspectorTest.dumpNavigatorView(contentScriptsNavigatorView, "contentScripts", " ");
// cleanup after test
WebInspector.networkProject.reset();
- WebInspector.runtimeModel._executionContextsCleared();
+ InspectorTest.runtimeModel._executionContextsCleared();
next();
},
function testAddExecutionContextBeforeFile(next)
{
- WebInspector.runtimeModel._executionContextCreated(mockExecutionContext);
+ InspectorTest.runtimeModel._executionContextCreated(mockExecutionContext);
var contentProvider = new WebInspector.StaticContentProvider(WebInspector.resourceTypes.Script, "");
WebInspector.networkProject.addFileForURL(mockContentScriptURL, contentProvider, true);
InspectorTest.dumpNavigatorView(contentScriptsNavigatorView, "contentScripts", " ");

Powered by Google App Engine
This is Rietveld 408576698