Run canExecute before executing delete command.
[chromium-blink-merge.git] / chrome / browser / crash_upload_list_mac.cc
blob98d9b7a6925b3f87b471cb95224a29899699200e
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/crash_upload_list_mac.h"
7 #include "base/time/time.h"
8 #include "components/crash/app/crashpad_mac.h"
10 CrashUploadListMac::CrashUploadListMac(Delegate* delegate,
11 const base::FilePath& upload_log_path)
12 : CrashUploadList(delegate, upload_log_path) {
15 CrashUploadListMac::~CrashUploadListMac() {
18 void CrashUploadListMac::LoadUploadList() {
19 std::vector<crash_reporter::UploadedReport> uploaded_reports;
20 crash_reporter::GetUploadedReports(&uploaded_reports);
22 ClearUploads();
23 for (const crash_reporter::UploadedReport& uploaded_report :
24 uploaded_reports) {
25 AppendUploadInfo(
26 UploadInfo(uploaded_report.remote_id,
27 base::Time::FromTimeT(uploaded_report.creation_time),
28 uploaded_report.local_id));