1 // Copyright (c) 2012 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 "components/upload_list/crash_upload_list.h"
7 #include "base/files/file_path.h"
8 #include "base/path_service.h"
9 #include "base/threading/sequenced_worker_pool.h"
12 const char* CrashUploadList::kReporterLogFilename
= "uploads.log";
14 CrashUploadList::CrashUploadList(
16 const base::FilePath
& upload_log_path
,
17 const scoped_refptr
<base::SequencedWorkerPool
>& worker_pool
)
18 : UploadList(delegate
, upload_log_path
, worker_pool
) {}
20 CrashUploadList::~CrashUploadList() {}