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

Unified Diff: LayoutTests/http/tests/inspector/resource-tree/resource-tree-mimetype.html

Issue 667743002: DevTools: remove "type" getters in Resource and NetworkRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/http/tests/inspector/resource-tree/resource-tree-mimetype.html
diff --git a/LayoutTests/http/tests/inspector/resource-tree/resource-tree-mimetype.html b/LayoutTests/http/tests/inspector/resource-tree/resource-tree-mimetype.html
index e460d1a405ae62c932a452b9c58a7588f93aa2a4..16688d3e6920fef063a900599a93e11cee8fe3d7 100644
--- a/LayoutTests/http/tests/inspector/resource-tree/resource-tree-mimetype.html
+++ b/LayoutTests/http/tests/inspector/resource-tree/resource-tree-mimetype.html
@@ -13,7 +13,7 @@ function test()
{
function format(resource)
{
- return resource.type.name() + " " + resource.mimeType + " " + resource.url;
+ return resource.resourceType().name() + " " + resource.mimeType + " " + resource.url;
}
InspectorTest.dumpResources(format);

Powered by Google App Engine
This is Rietveld 408576698