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 #ifndef CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_
6 #define CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_
8 #include "base/macros.h"
9 #include "components/upload_list/crash_upload_list.h"
13 class SequencedWorkerPool
;
16 // A CrashUploadList that retrieves the list of uploaded reports from the
18 class CrashUploadListMac
: public CrashUploadList
{
20 // The |upload_log_path| argument is unused. It is only accepted because the
21 // base class constructor requires it, although it is entirely unused with
22 // LoadUploadList() being overridden.
25 const base::FilePath
& upload_log_path
,
26 const scoped_refptr
<base::SequencedWorkerPool
>& worker_pool
);
29 ~CrashUploadListMac() override
;
31 // Called on a blocking pool thread.
32 void LoadUploadList() override
;
34 DISALLOW_COPY_AND_ASSIGN(CrashUploadListMac
);
37 #endif // CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_