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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html

Issue 2758673002: [DevTools] Extract NetworkLog and HAREntry to a separate network_log module (Closed)
Patch Set: rebased Created 3 years, 9 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/http/tests/inspector/resource-har-conversion.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html
index dbbc6b2ec80dc65bdaec56ddba70b4f6e74f0617..5f6581c4684ff94e9cfa733660b197fe2526adf6 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html
@@ -51,7 +51,7 @@ var test = function()
}
addCookieHeadersToRequest(findRequestByURL(/inspector-test\.js$/));
- var log = (new SDK.HARLog(InspectorTest.networkRequests())).build();
+ var log = (new NetworkLog.HARLog(InspectorTest.networkRequests())).build();
// Filter out favicon.ico requests that only appear on certain platforms.
log.entries = log.entries.filter(function(entry) {
return !/favicon\.ico$/.test(entry.request.url);

Powered by Google App Engine
This is Rietveld 408576698