Chromium Code Reviews| 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) { |
| + return printLogEntriesAsText(this.entries_, parent); |
|
eroman
2011/12/08 22:21:06
I would omit the "return", since printLogEntriesAs
mmenke
2011/12/08 22:28:37
Done.
|
| } |
| }; |