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

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

Issue 10825116: net-internals: Display time log dump was created at end of printed logs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix comments, order Created 8 years, 5 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/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);
}
};

Powered by Google App Engine
This is Rietveld 408576698