| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 "chrome/browser/android/crash_dump_manager.h" | 5 #include "chrome/browser/android/crash_dump_manager.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" |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 if (!r) { | 104 if (!r) { |
| 105 NOTREACHED() << "Failed to retrieve the crash dump directory."; | 105 NOTREACHED() << "Failed to retrieve the crash dump directory."; |
| 106 return; | 106 return; |
| 107 } | 107 } |
| 108 | 108 |
| 109 const uint64 rand = base::RandUint64(); | 109 const uint64 rand = base::RandUint64(); |
| 110 const std::string filename = | 110 const std::string filename = |
| 111 base::StringPrintf("chromium-renderer-minidump-%016" PRIx64 ".dmp%d", | 111 base::StringPrintf("chromium-renderer-minidump-%016" PRIx64 ".dmp%d", |
| 112 rand, pid); | 112 rand, pid); |
| 113 base::FilePath dest_path = crash_dump_dir.Append(filename); | 113 base::FilePath dest_path = crash_dump_dir.Append(filename); |
| 114 r = file_util::Move(minidump_path, dest_path); | 114 r = base::Move(minidump_path, dest_path); |
| 115 if (!r) { | 115 if (!r) { |
| 116 LOG(ERROR) << "Failed to move crash dump from " << minidump_path.value() | 116 LOG(ERROR) << "Failed to move crash dump from " << minidump_path.value() |
| 117 << " to " << dest_path.value(); | 117 << " to " << dest_path.value(); |
| 118 base::Delete(minidump_path, false); | 118 base::Delete(minidump_path, false); |
| 119 return; | 119 return; |
| 120 } | 120 } |
| 121 LOG(INFO) << "Crash minidump successfully generated: " << | 121 LOG(INFO) << "Crash minidump successfully generated: " << |
| 122 crash_dump_dir.Append(filename).value(); | 122 crash_dump_dir.Append(filename).value(); |
| 123 } | 123 } |
| 124 | 124 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 // NOTIFICATION_RENDERER_PROCESS_CLOSED. | 164 // NOTIFICATION_RENDERER_PROCESS_CLOSED. |
| 165 return; | 165 return; |
| 166 } | 166 } |
| 167 minidump_path = iter->second; | 167 minidump_path = iter->second; |
| 168 child_process_id_to_minidump_path_.erase(iter); | 168 child_process_id_to_minidump_path_.erase(iter); |
| 169 } | 169 } |
| 170 BrowserThread::PostTask( | 170 BrowserThread::PostTask( |
| 171 BrowserThread::FILE, FROM_HERE, | 171 BrowserThread::FILE, FROM_HERE, |
| 172 base::Bind(&CrashDumpManager::ProcessMinidump, minidump_path, pid)); | 172 base::Bind(&CrashDumpManager::ProcessMinidump, minidump_path, pid)); |
| 173 } | 173 } |
| OLD | NEW |