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

Unified Diff: content/browser/child_process_launcher.h

Issue 11189068: Changing minidump process generation to be in-process on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved patch description. Created 8 years, 2 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: content/browser/child_process_launcher.h
diff --git a/content/browser/child_process_launcher.h b/content/browser/child_process_launcher.h
index 8f610b2baaa42f981f8d0a7f27ad3b9d7929d7b3..6340ff9a168432874be58fc6bb567aaee31112ee 100644
--- a/content/browser/child_process_launcher.h
+++ b/content/browser/child_process_launcher.h
@@ -9,6 +9,7 @@
#include "base/memory/ref_counted.h"
#include "base/process_util.h"
#include "content/common/content_export.h"
+#include "content/public/browser/file_descriptor_info.h"
class CommandLine;
@@ -21,7 +22,10 @@ class CONTENT_EXPORT ChildProcessLauncher {
public:
// Will be called on the thread that the ChildProcessLauncher was
// constructed on.
- virtual void OnProcessLaunched() = 0;
+ // |mapped_files| contains the list of FDs that have been mapped in the
+ // created process (passed through the
+ // ContentBrowserClient::GetAdditionalMappedFilesForChildProcess call).
+ virtual void OnProcessLaunched(const content::FDInfoList& mapped_files) = 0;
protected:
virtual ~Client() {}

Powered by Google App Engine
This is Rietveld 408576698