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

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

Issue 8890016: Make source_dependencies in about:net-internals clickable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix missed variable name change Created 9 years 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/source_entry.js
===================================================================
--- chrome/browser/resources/net_internals/source_entry.js (revision 112998)
+++ chrome/browser/resources/net_internals/source_entry.js (working copy)
@@ -217,8 +217,12 @@
return endTime - startTime;
},
- printAsText: function() {
- return PrintSourceEntriesAsText(this.entries_);
+ /**
+ * Prints descriptive text about |entries_| to a new node added to the end
+ * of |parent|.
+ */
+ printAsText: function(parent) {
+ printLogEntriesAsText(this.entries_, parent);
}
};
« no previous file with comments | « chrome/browser/resources/net_internals/proxy_view.js ('k') | chrome/browser/resources/net_internals/source_row.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698