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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-headers.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/http/tests/inspector/resource-har-headers.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-headers.html b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-headers.html
index f6c441cfbf03c2de208a0e1c339589eff4e93b7b..7889d1e6e2e01c3760a48c913dea80c12bb55640 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-headers.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-headers.html
@@ -34,7 +34,7 @@ var test = function()
request._transferSize = 539; // 39 = header size at the end of the day
}
- var testRequest = new WebInspector.NetworkRequest(WebInspector.targetManager.mainTarget(), "testRequest", "http://example.com/inspector-test.js", 1);
+ var testRequest = new SDK.NetworkRequest(SDK.targetManager.mainTarget(), "testRequest", "http://example.com/inspector-test.js", 1);
setRequestValues(testRequest);
var headersText = testRequest.requestHeadersText();
var requestResults = {
@@ -60,7 +60,7 @@ var test = function()
"_transferSize": "formatAsTypeName",
"_error": "skip"
};
- InspectorTest.addObject(new WebInspector.HAREntry(testRequest).build(), stillNondeterministic, "", "HAR:");
+ InspectorTest.addObject(new SDK.HAREntry(testRequest).build(), stillNondeterministic, "", "HAR:");
InspectorTest.completeTest();
}
</script>

Powered by Google App Engine
This is Rietveld 408576698