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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/sources-panel-extension-names.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/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();
},

Powered by Google App Engine
This is Rietveld 408576698