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() {} |