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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-sorting.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/scripts-sorting.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-sorting.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-sorting.html
index 2c9f055ef3913bbd09ac50b3fb2d82904638ffea..652b1589233d29dc6fb16afd0c6027aba1dc315e 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-sorting.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-sorting.html
@@ -11,18 +11,18 @@ function test()
{
var navigatorView = new constructor();
navigatorView._resetWorkspace(InspectorTest.testWorkspace);
- navigatorView.show(WebInspector.inspectorView.element);
+ navigatorView.show(UI.inspectorView.element);
return navigatorView;
}
InspectorTest.createWorkspaceWithTarget(true);
- sourcesNavigatorView = createNavigatorView(WebInspector.SourcesNavigatorView);
- contentScriptsNavigatorView = createNavigatorView(WebInspector.ContentScriptsNavigatorView);
+ sourcesNavigatorView = createNavigatorView(Sources.SourcesNavigatorView);
+ contentScriptsNavigatorView = createNavigatorView(Sources.ContentScriptsNavigatorView);
var uiSourceCodes = [];
function addUISourceCode(url, isContentScript)
{
- var contentProvider = WebInspector.StaticContentProvider.fromString(url, WebInspector.resourceTypes.Script, "");
+ var contentProvider = Common.StaticContentProvider.fromString(url, Common.resourceTypes.Script, "");
var uiSourceCode = InspectorTest.testNetworkProject.addFile(contentProvider, InspectorTest.mainFrame(), isContentScript);
uiSourceCodes.push(uiSourceCode);
}

Powered by Google App Engine
This is Rietveld 408576698