| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "components/breakpad/browser/crash_dump_manager_android.h" | 5 #include "components/crash/browser/crash_dump_manager_android.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/format_macros.h" | 9 #include "base/format_macros.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/posix/global_descriptors.h" | 11 #include "base/posix/global_descriptors.h" |
| 12 #include "base/process/process.h" | 12 #include "base/process/process.h" |
| 13 #include "base/rand_util.h" | 13 #include "base/rand_util.h" |
| 14 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
| 15 #include "base/strings/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 } | 162 } |
| 163 minidump_path = iter->second; | 163 minidump_path = iter->second; |
| 164 child_process_id_to_minidump_path_.erase(iter); | 164 child_process_id_to_minidump_path_.erase(iter); |
| 165 } | 165 } |
| 166 BrowserThread::PostTask( | 166 BrowserThread::PostTask( |
| 167 BrowserThread::FILE, FROM_HERE, | 167 BrowserThread::FILE, FROM_HERE, |
| 168 base::Bind(&CrashDumpManager::ProcessMinidump, minidump_path, pid)); | 168 base::Bind(&CrashDumpManager::ProcessMinidump, minidump_path, pid)); |
| 169 } | 169 } |
| 170 | 170 |
| 171 } // namespace breakpad | 171 } // namespace breakpad |
| OLD | NEW |