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

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

Issue 2120002: On the net-internals text dump, display times as unix timestamps rather than ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 7 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
« no previous file with comments | « chrome/browser/resources/net_internals/dataview.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/logviewpainter.js
===================================================================
--- chrome/browser/resources/net_internals/logviewpainter.js (revision 47219)
+++ chrome/browser/resources/net_internals/logviewpainter.js (working copy)
@@ -53,7 +53,8 @@
tablePrinter.addRow();
tablePrinter.addCell('t=');
- var tCell = tablePrinter.addCell(entry.orig.time);
+ var tCell = tablePrinter.addCell(
+ g_browser.convertTimeTicksToDate(entry.orig.time).getTime());
tCell.alignRight = true;
tablePrinter.addCell(' ');
« no previous file with comments | « chrome/browser/resources/net_internals/dataview.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698