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

Side by Side Diff: components/upload_list/crash_upload_list.h

Issue 2443103003: Remove unused include in sequenced_worker_pool.h (Closed)
Patch Set: and more: win Created 4 years, 1 month 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
« no previous file with comments | « components/sync/model_impl/model_type_store_impl.cc ('k') | components/wifi/wifi_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_UPLOAD_LIST_CRASH_UPLOAD_LIST_H_ 5 #ifndef COMPONENTS_UPLOAD_LIST_CRASH_UPLOAD_LIST_H_
6 #define COMPONENTS_UPLOAD_LIST_CRASH_UPLOAD_LIST_H_ 6 #define COMPONENTS_UPLOAD_LIST_CRASH_UPLOAD_LIST_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/task_runner.h"
Robert Sesek 2016/10/31 18:33:17 This has a fwd declare on line 15, so maybe this i
gab 2016/10/31 18:35:18 Oops indeed, removed fwd-decl (see CL description,
10 #include "components/upload_list/upload_list.h" 11 #include "components/upload_list/upload_list.h"
11 12
12 namespace base { 13 namespace base {
13 class FilePath; 14 class FilePath;
14 class TaskRunner; 15 class TaskRunner;
15 } 16 }
16 17
17 // An upload list manager for crash reports from breakpad. 18 // An upload list manager for crash reports from breakpad.
18 class CrashUploadList : public UploadList { 19 class CrashUploadList : public UploadList {
19 public: 20 public:
20 // Should match kReporterLogFilename in 21 // Should match kReporterLogFilename in
21 // breakpad/src/client/apple/Framework/BreakpadDefines.h. 22 // breakpad/src/client/apple/Framework/BreakpadDefines.h.
22 static const char kReporterLogFilename[]; 23 static const char kReporterLogFilename[];
23 24
24 // Creates a new crash upload list with the given callback delegate. 25 // Creates a new crash upload list with the given callback delegate.
25 CrashUploadList(Delegate* delegate, 26 CrashUploadList(Delegate* delegate,
26 const base::FilePath& upload_log_path, 27 const base::FilePath& upload_log_path,
27 scoped_refptr<base::TaskRunner> task_runner); 28 scoped_refptr<base::TaskRunner> task_runner);
28 29
29 protected: 30 protected:
30 ~CrashUploadList() override; 31 ~CrashUploadList() override;
31 32
32 private: 33 private:
33 DISALLOW_COPY_AND_ASSIGN(CrashUploadList); 34 DISALLOW_COPY_AND_ASSIGN(CrashUploadList);
34 }; 35 };
35 36
36 #endif // COMPONENTS_UPLOAD_LIST_CRASH_UPLOAD_LIST_H_ 37 #endif // COMPONENTS_UPLOAD_LIST_CRASH_UPLOAD_LIST_H_
OLDNEW
« no previous file with comments | « components/sync/model_impl/model_type_store_impl.cc ('k') | components/wifi/wifi_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698