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

Side by Side Diff: chrome/browser/crash_upload_list_crashpad.h

Issue 2088613002: Move c/b/crash_upload_list* to subdir with OWNERS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@crash-list-all
Patch Set: rebase Created 4 years, 6 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_CRASHPAD_H_
6 #define CHROME_BROWSER_CRASH_UPLOAD_LIST_CRASHPAD_H_
7
8 #include "base/macros.h"
9 #include "components/upload_list/crash_upload_list.h"
10
11 namespace base {
12 class FilePath;
13 class SequencedWorkerPool;
14 }
15
16 // A CrashUploadList that retrieves the list of uploaded reports from the
17 // Crashpad database.
18 class CrashUploadListCrashpad : public CrashUploadList {
19 public:
20 CrashUploadListCrashpad(
21 Delegate* delegate,
22 const scoped_refptr<base::SequencedWorkerPool>& worker_pool);
23
24 protected:
25 ~CrashUploadListCrashpad() override;
26
27 // Called on a blocking pool thread.
28 void LoadUploadList(std::vector<UploadInfo>* uploads) override;
29
30 DISALLOW_COPY_AND_ASSIGN(CrashUploadListCrashpad);
31 };
32
33 #endif // CHROME_BROWSER_CRASH_UPLOAD_LIST_CRASHPAD_H_
OLDNEW
« no previous file with comments | « chrome/browser/crash_upload_list/crash_upload_list_crashpad.cc ('k') | chrome/browser/crash_upload_list_crashpad.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698