Index: chrome/browser/resources/net_internals/source_entry.js |
=================================================================== |
--- chrome/browser/resources/net_internals/source_entry.js (revision 148858) |
+++ chrome/browser/resources/net_internals/source_entry.js (working copy) |
@@ -309,8 +309,10 @@ |
* of |parent|. |
*/ |
printAsText: function(parent) { |
+ // The date will be undefined if not viewing a loaded log file. |
printLogEntriesAsText(this.entries_, parent, |
- SourceTracker.getInstance().getSecurityStripping()); |
+ SourceTracker.getInstance().getSecurityStripping(), |
+ Constants.clientInfo.numericDate); |
} |
}; |