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

Unified Diff: components/crash/core/browser/resources/crashes.js

Issue 2568953003: Fixed a bug where chrome crash omits crash time stamp after it's sent. (Closed)
Patch Set: Created 4 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
« no previous file with comments | « components/crash/core/browser/crashes_ui_util.cc ('k') | components/crash_strings.grdp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/core/browser/resources/crashes.js
diff --git a/components/crash/core/browser/resources/crashes.js b/components/crash/core/browser/resources/crashes.js
index 8894d32fdc77227d571f5b8dbc77514b6af790c9..89a0bea508d545b866bf6cc69117b632d1543fa3 100644
--- a/components/crash/core/browser/resources/crashes.js
+++ b/components/crash/core/browser/resources/crashes.js
@@ -60,7 +60,8 @@ function updateCrashList(
if (uploaded) {
var date = document.createElement('p');
date.textContent = loadTimeData.getStringF('crashTimeFormat',
- crash.time);
+ crash.time,
+ crash.upload_time);
crashBlock.appendChild(date);
var linkBlock = document.createElement('p');
var link = document.createElement('a');
« no previous file with comments | « components/crash/core/browser/crashes_ui_util.cc ('k') | components/crash_strings.grdp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698