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

Side by Side Diff: chrome/browser/crash_upload_list_mac.cc

Issue 1416133003: Crashpad Windows: Use the Crashpad client instead of Breakpad on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
Mark Mentovai 2015/11/10 17:21:17 You’ll want to do something to make chrome://crash
scottmg 2015/11/16 21:48:39 Done.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/crash_upload_list_mac.h" 5 #include "chrome/browser/crash_upload_list_mac.h"
6 6
7 #include "base/threading/sequenced_worker_pool.h" 7 #include "base/threading/sequenced_worker_pool.h"
8 #include "base/time/time.h" 8 #include "base/time/time.h"
9 #include "components/crash/content/app/crashpad_mac.h" 9 #include "components/crash/content/app/crashpad.h"
10 10
11 CrashUploadListMac::CrashUploadListMac( 11 CrashUploadListMac::CrashUploadListMac(
12 Delegate* delegate, 12 Delegate* delegate,
13 const base::FilePath& upload_log_path, 13 const base::FilePath& upload_log_path,
14 const scoped_refptr<base::SequencedWorkerPool>& worker_pool) 14 const scoped_refptr<base::SequencedWorkerPool>& worker_pool)
15 : CrashUploadList(delegate, upload_log_path, worker_pool) { 15 : CrashUploadList(delegate, upload_log_path, worker_pool) {
16 } 16 }
17 17
18 CrashUploadListMac::~CrashUploadListMac() { 18 CrashUploadListMac::~CrashUploadListMac() {
19 } 19 }
20 20
21 void CrashUploadListMac::LoadUploadList() { 21 void CrashUploadListMac::LoadUploadList() {
22 std::vector<crash_reporter::UploadedReport> uploaded_reports; 22 std::vector<crash_reporter::UploadedReport> uploaded_reports;
23 crash_reporter::GetUploadedReports(&uploaded_reports); 23 crash_reporter::GetUploadedReports(&uploaded_reports);
24 24
25 ClearUploads(); 25 ClearUploads();
26 for (const crash_reporter::UploadedReport& uploaded_report : 26 for (const crash_reporter::UploadedReport& uploaded_report :
27 uploaded_reports) { 27 uploaded_reports) {
28 AppendUploadInfo( 28 AppendUploadInfo(
29 UploadInfo(uploaded_report.remote_id, 29 UploadInfo(uploaded_report.remote_id,
30 base::Time::FromTimeT(uploaded_report.creation_time), 30 base::Time::FromTimeT(uploaded_report.creation_time),
31 uploaded_report.local_id, 31 uploaded_report.local_id,
32 base::Time())); 32 base::Time()));
33 } 33 }
34 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698