Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_ | |
| 6 #define CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_ | |
| 7 | |
| 8 #include "chrome/browser/crash_upload_list.h" | |
| 9 | |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/files/file_path.h" | |
| 12 | |
| 13 class CrashUploadListMac : public CrashUploadList { | |
|
Robert Sesek
2015/03/12 23:51:34
Short comment?
// A CrashUploadList that retrieve
| |
| 14 public: | |
| 15 CrashUploadListMac(Delegate* delegate, const base::FilePath& upload_log_path); | |
| 16 | |
| 17 protected: | |
| 18 ~CrashUploadListMac() override; | |
| 19 | |
| 20 void LoadUploadList() override; | |
|
Robert Sesek
2015/03/12 23:51:34
// Called on the FILE thread.
| |
| 21 | |
| 22 DISALLOW_COPY_AND_ASSIGN(CrashUploadListMac); | |
| 23 }; | |
| 24 | |
| 25 #endif // CHROME_BROWSER_CRASH_UPLOAD_LIST_MAC_H_ | |
| OLD | NEW |