| Index: content/public/browser/content_browser_client.h
|
| diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
|
| index 7766f55d418683d958e06c2b3fe93e286e2d258c..d24978f1861e91f2c91f76d8769d52297757b3f9 100644
|
| --- a/content/public/browser/content_browser_client.h
|
| +++ b/content/public/browser/content_browser_client.h
|
| @@ -450,7 +450,10 @@ class CONTENT_EXPORT ContentBrowserClient {
|
|
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX)
|
| // Populates |mappings| with all files that need to be mapped before launching
|
| - // a child process.
|
| + // a child process. Note that the caller takes ownership of the file
|
| + // descriptors returned in mappings, meaning you should not close them after
|
| + // that call and you must dup them if you need to use them after this method
|
| + // is called.
|
| virtual void GetAdditionalMappedFilesForChildProcess(
|
| const CommandLine& command_line,
|
| base::GlobalDescriptors::Mapping* mappings) {}
|
|
|