Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Unified Diff: chrome/browser/crash_upload_list_mac.h

Issue 1001103002: Crashpad! (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean it all up Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698