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

Unified Diff: chrome/browser/resources/net_internals/sourceentry.js

Issue 6592027: Update NetLog in preparation for late binding of HttpStream jobs to requests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix lint. Created 9 years, 10 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: chrome/browser/resources/net_internals/sourceentry.js
diff --git a/chrome/browser/resources/net_internals/sourceentry.js b/chrome/browser/resources/net_internals/sourceentry.js
index 6c02c03e7ed7a63f1d45b8074bae11e41a17e7ec..8730e7f036c3409b5e44bd87612eb3c7ef6c3518 100644
--- a/chrome/browser/resources/net_internals/sourceentry.js
+++ b/chrome/browser/resources/net_internals/sourceentry.js
@@ -247,6 +247,9 @@ SourceEntry.prototype.getDescription = function() {
description = connectJobSourceEntry.getDescription();
}
break;
+ case LogSourceType.HTTP_STREAM_JOB:
mmenke 2011/02/28 15:57:28 nit: Might as well merge this with LogSourceType.
+ description = e.params.url;
+ break;
}
if (description == undefined)

Powered by Google App Engine
This is Rietveld 408576698