| Index: third_party/WebKit/LayoutTests/inspector/sources/sources-panel-extension-names.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/sources-panel-extension-names.html b/third_party/WebKit/LayoutTests/inspector/sources/sources-panel-extension-names.html
|
| index 661a189e10f595ebca87c8ed9a62b3b13923ba4e..307c9c1590b8efb7ee4ae46d97db71163b1cd173 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/sources-panel-extension-names.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/sources-panel-extension-names.html
|
| @@ -6,8 +6,8 @@
|
| <script>
|
| function test()
|
| {
|
| - var contentScriptsNavigatorView = new WebInspector.ContentScriptsNavigatorView();
|
| - contentScriptsNavigatorView.show(WebInspector.inspectorView.element);
|
| + var contentScriptsNavigatorView = new Sources.ContentScriptsNavigatorView();
|
| + contentScriptsNavigatorView.show(UI.inspectorView.element);
|
|
|
| var mockExecutionContext = {
|
| id: 1234567,
|
| @@ -21,8 +21,8 @@ function test()
|
| function testAddExecutionContextBeforeFile(next)
|
| {
|
| InspectorTest.runtimeModel._executionContextCreated(mockExecutionContext);
|
| - var contentProvider = WebInspector.StaticContentProvider.fromString(mockContentScriptURL, WebInspector.resourceTypes.Script, "");
|
| - WebInspector.NetworkProject.forTarget(InspectorTest.mainTarget).addFile(contentProvider, InspectorTest.mainFrame(), true);
|
| + var contentProvider = Common.StaticContentProvider.fromString(mockContentScriptURL, Common.resourceTypes.Script, "");
|
| + Bindings.NetworkProject.forTarget(InspectorTest.mainTarget).addFile(contentProvider, InspectorTest.mainFrame(), true);
|
| InspectorTest.dumpNavigatorView(contentScriptsNavigatorView);
|
| next();
|
| },
|
|
|