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

Unified Diff: chrome/browser/ui/webui/flash_ui.cc

Issue 1405373002: Fix WebRTC log list errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 2 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/media/webrtc_logs.js ('k') | chrome/browser/ui/webui/media/webrtc_logs_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/flash_ui.cc
diff --git a/chrome/browser/ui/webui/flash_ui.cc b/chrome/browser/ui/webui/flash_ui.cc
index 6bfaac22af73b66f261ed29e11ab1f0c93fd971a..91856855e8c0f4ca819f4a7fa62a1611ccfbf02e 100644
--- a/chrome/browser/ui/webui/flash_ui.cc
+++ b/chrome/browser/ui/webui/flash_ui.cc
@@ -302,9 +302,9 @@ void FlashDOMHandler::MaybeRespondToPage() {
for (std::vector<CrashUploadList::UploadInfo>::iterator i = crashes.begin();
i != crashes.end(); ++i) {
- base::string16 crash_string(ASCIIToUTF16(i->id));
+ base::string16 crash_string(ASCIIToUTF16(i->upload_id));
crash_string += ASCIIToUTF16(" ");
- crash_string += base::TimeFormatFriendlyDateAndTime(i->time);
+ crash_string += base::TimeFormatFriendlyDateAndTime(i->upload_time);
AddPair(list, ASCIIToUTF16("crash id"), crash_string);
}
} else {
« no previous file with comments | « chrome/browser/resources/media/webrtc_logs.js ('k') | chrome/browser/ui/webui/media/webrtc_logs_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698