Add 'did_proceed' and 'repeat_visit' to ClientMalwareReportRequest to track CTR.
[chromium-blink-merge.git] / components / upload_list / crash_upload_list.cc
blob1c7d570e859e2dd9f8cca590388f3efbf3908e5b
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
3 // found in the LICENSE file.
5 #include "components/upload_list/crash_upload_list.h"
7 #include "base/files/file_path.h"
8 #include "base/path_service.h"
9 #include "base/threading/sequenced_worker_pool.h"
11 // static
12 const char* CrashUploadList::kReporterLogFilename = "uploads.log";
14 CrashUploadList::CrashUploadList(
15 Delegate* delegate,
16 const base::FilePath& upload_log_path,
17 const scoped_refptr<base::SequencedWorkerPool>& worker_pool)
18 : UploadList(delegate, upload_log_path, worker_pool) {}
20 CrashUploadList::~CrashUploadList() {}