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

Unified Diff: components/crash/content/browser/crash_dump_manager_android.cc

Issue 2950153002: Improve process launch handle sharing API. (Closed)
Patch Set: Merge Created 3 years, 5 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
Index: components/crash/content/browser/crash_dump_manager_android.cc
diff --git a/components/crash/content/browser/crash_dump_manager_android.cc b/components/crash/content/browser/crash_dump_manager_android.cc
index fdcfa65f7d6b4f96890f742db7889c6194e92beb..24a00b42cc4978cd0d39b52ad648334acc9d8920 100644
--- a/components/crash/content/browser/crash_dump_manager_android.cc
+++ b/components/crash/content/browser/crash_dump_manager_android.cc
@@ -21,9 +21,9 @@
#include "base/task_scheduler/post_task.h"
#include "components/crash/content/app/breakpad_linux.h"
#include "content/public/browser/child_process_data.h"
-#include "content/public/browser/file_descriptor_info.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_types.h"
+#include "content/public/browser/posix_file_descriptor_info.h"
#include "content/public/browser/render_process_host.h"
#include "jni/CrashDumpManager_jni.h"
@@ -36,8 +36,9 @@ CrashDumpManager::CrashDumpManager(const base::FilePath& crash_dump_dir,
CrashDumpManager::~CrashDumpManager() {
}
-void CrashDumpManager::OnChildStart(int child_process_id,
- content::FileDescriptorInfo* mappings) {
+void CrashDumpManager::OnChildStart(
+ int child_process_id,
+ content::PosixFileDescriptorInfo* mappings) {
if (!breakpad::IsCrashReporterEnabled())
return;

Powered by Google App Engine
This is Rietveld 408576698