Remove the dependency of PasswordStore on BrowserContextKeyedService
[chromium-blink-merge.git] / chrome / browser / crash_upload_list.cc
blob911fec466b5d6f84ae3c40941b3958319385a935
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 "chrome/browser/crash_upload_list.h"
7 #include "base/files/file_path.h"
8 #include "base/path_service.h"
9 #include "chrome/common/chrome_paths.h"
10 #if defined(OS_WIN)
11 #include "chrome/browser/crash_upload_list_win.h"
12 #endif
14 // static
15 const char* CrashUploadList::kReporterLogFilename = "uploads.log";
17 // static
18 CrashUploadList* CrashUploadList::Create(Delegate* delegate) {
19 base::FilePath crash_dir_path;
20 PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dir_path);
21 base::FilePath upload_log_path =
22 crash_dir_path.AppendASCII(kReporterLogFilename);
23 #if defined(OS_WIN)
24 return new CrashUploadListWin(delegate, upload_log_path);
25 #else
26 return new CrashUploadList(delegate, upload_log_path);
27 #endif
30 CrashUploadList::CrashUploadList(Delegate* delegate,
31 const base::FilePath& upload_log_path)
32 : UploadList(delegate, upload_log_path) {}
34 CrashUploadList::~CrashUploadList() {}