Chromium Code Reviews| Index: chrome/browser/crash_upload_list_mac.h |
| diff --git a/chrome/browser/crash_upload_list_mac.h b/chrome/browser/crash_upload_list_mac.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..65332920e346d01bed5ba47f6071f7983a673ddb |
| --- /dev/null |
| +++ b/chrome/browser/crash_upload_list_mac.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_ |
| +#define CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_ |
| + |
| +#include "chrome/browser/crash_upload_list.h" |
| + |
| +#include "base/basictypes.h" |
| +#include "base/files/file_path.h" |
| + |
| +class CrashUploadListMac : public CrashUploadList { |
|
Robert Sesek
2015/03/12 23:51:34
Short comment?
// A CrashUploadList that retrieve
|
| + public: |
| + CrashUploadListMac(Delegate* delegate, const base::FilePath& upload_log_path); |
| + |
| + protected: |
| + ~CrashUploadListMac() override; |
| + |
| + void LoadUploadList() override; |
|
Robert Sesek
2015/03/12 23:51:34
// Called on the FILE thread.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(CrashUploadListMac); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_ |