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

Unified Diff: third_party/WebKit/LayoutTests/inspector/file-system-project.html

Issue 1564113003: DevTools: merge uisourcecode's url-alike members. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 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: third_party/WebKit/LayoutTests/inspector/file-system-project.html
diff --git a/third_party/WebKit/LayoutTests/inspector/file-system-project.html b/third_party/WebKit/LayoutTests/inspector/file-system-project.html
index d468b9e006909864bd5a3befa66c5b3be3857200..8db14a9c6f93b7004bb690444070d14174f8b425 100644
--- a/third_party/WebKit/LayoutTests/inspector/file-system-project.html
+++ b/third_party/WebKit/LayoutTests/inspector/file-system-project.html
@@ -38,7 +38,7 @@ function test()
InspectorTest.addResult("Dumping uiSourceCodes origin URLs:");
var uiSourceCodes = InspectorTest.fileSystemUISourceCodes();
for (var i = 0; i < uiSourceCodes.length; ++i)
- InspectorTest.addResult(" - " + uiSourceCodes[i].originURL());
+ InspectorTest.addResult(" - " + uiSourceCodes[i].url());
}
function createFileSystem(name, callback)
@@ -94,14 +94,14 @@ function test()
var url = WebInspector.networkMapping.networkURL(uiSourceCodes[i]);
if (!url)
continue;
- InspectorTest.addResult(" " + uiSourceCodes[i].uri() + " -> " + url);
+ InspectorTest.addResult(" " + uiSourceCodes[i].url() + " -> " + url);
}
InspectorTest.addResult("UISourceCode url to uri mappings:");
for (var i = 0; i < uiSourceCodes.length; ++i) {
var url = WebInspector.networkMapping.networkURL(uiSourceCodes[i]);
if (!url)
continue;
- var uri = WebInspector.networkMapping.uiSourceCodeForURLForAnyTarget(url).uri();
+ var uri = WebInspector.networkMapping.uiSourceCodeForURLForAnyTarget(url).url();
InspectorTest.addResult(" " + url + " -> " + uri);
}
WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.WorkingCopyCommitted, contentCommitted, this);

Powered by Google App Engine
This is Rietveld 408576698