diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-29 23:29:54 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-29 23:29:54 +0000 |
commit | d0f837d64102812529ed5c90c2d761791e90b522 (patch) | |
tree | 98d22dabdeabecece86f5343be9b5395ee5c4377 /chrome/browser/crash_upload_list.cc | |
parent | 41834613fa4ae627781f9912d6e4c2be1e5ec012 (diff) | |
download | chromium_src-d0f837d64102812529ed5c90c2d761791e90b522.zip chromium_src-d0f837d64102812529ed5c90c2d761791e90b522.tar.gz chromium_src-d0f837d64102812529ed5c90c2d761791e90b522.tar.bz2 |
Revert r206949 - "Start moving breakpad integration to a component."
I'll use a different approach to move breakpad to a component.
> Step 1: move the DIR_CRASH_DUMPS symbol to the component
>
> BUG=247431
>
> Review URL: https://chromiumcodereview.appspot.com/16924012
TBR=thestig@chromium.org
Review URL: https://chromiumcodereview.appspot.com/18277002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209356 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/crash_upload_list.cc')
-rw-r--r-- | chrome/browser/crash_upload_list.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/crash_upload_list.cc b/chrome/browser/crash_upload_list.cc index 20dd2d8..911fec4 100644 --- a/chrome/browser/crash_upload_list.cc +++ b/chrome/browser/crash_upload_list.cc @@ -6,10 +6,10 @@ #include "base/files/file_path.h" #include "base/path_service.h" +#include "chrome/common/chrome_paths.h" #if defined(OS_WIN) #include "chrome/browser/crash_upload_list_win.h" #endif -#include "components/breakpad/common/breakpad_paths.h" // static const char* CrashUploadList::kReporterLogFilename = "uploads.log"; @@ -17,7 +17,7 @@ const char* CrashUploadList::kReporterLogFilename = "uploads.log"; // static CrashUploadList* CrashUploadList::Create(Delegate* delegate) { base::FilePath crash_dir_path; - PathService::Get(breakpad::DIR_CRASH_DUMPS, &crash_dir_path); + PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dir_path); base::FilePath upload_log_path = crash_dir_path.AppendASCII(kReporterLogFilename); #if defined(OS_WIN) |