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

Side by Side 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698