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

Unified Diff: chrome/browser/crash_upload_list.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/crash_upload_list.h ('k') | chrome/browser/crash_upload_list/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/crash_upload_list.cc
diff --git a/chrome/browser/crash_upload_list.cc b/chrome/browser/crash_upload_list.cc
deleted file mode 100644
index 95aa101b9d2189fb1d338f1bfdef660307dabd00..0000000000000000000000000000000000000000
--- a/chrome/browser/crash_upload_list.cc
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/crash_upload_list.h"
-
-#include "base/files/file_path.h"
-#include "base/path_service.h"
-#include "base/threading/sequenced_worker_pool.h"
-#include "build/build_config.h"
-#include "chrome/common/chrome_paths.h"
-#include "content/public/browser/browser_thread.h"
-
-#if defined(OS_MACOSX) || defined(OS_WIN)
-#include "chrome/browser/crash_upload_list_crashpad.h"
-#endif
-
-scoped_refptr<CrashUploadList> CreateCrashUploadList(
- UploadList::Delegate* delegate) {
-#if defined(OS_MACOSX) || defined(OS_WIN)
- return new CrashUploadListCrashpad(delegate,
- content::BrowserThread::GetBlockingPool());
-#else
- base::FilePath crash_dir_path;
- PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dir_path);
- base::FilePath upload_log_path =
- crash_dir_path.AppendASCII(CrashUploadList::kReporterLogFilename);
- return new CrashUploadList(delegate, upload_log_path,
- content::BrowserThread::GetBlockingPool());
-#endif
-}
« no previous file with comments | « chrome/browser/crash_upload_list.h ('k') | chrome/browser/crash_upload_list/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698