| 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 #ifndef CONTENT_PUBLIC_COMMON_SANDBOXED_PROCESS_LAUNCHER_DELEGATE_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_SANDBOXED_PROCESS_LAUNCHER_DELEGATE_H_ |
| 6 #define CONTENT_PUBLIC_COMMON_SANDBOXED_PROCESS_LAUNCHER_DELEGATE_H_ | 6 #define CONTENT_PUBLIC_COMMON_SANDBOXED_PROCESS_LAUNCHER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/environment.h" | 8 #include "base/environment.h" |
| 9 #include "base/files/scoped_file.h" |
| 9 #include "base/process/process.h" | 10 #include "base/process/process.h" |
| 10 | |
| 11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 | 12 |
| 13 #if defined(OS_MACOSX) | 13 #if defined(OS_MACOSX) |
| 14 #include "content/public/common/sandbox_type_mac.h" | 14 #include "content/public/common/sandbox_type_mac.h" |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class FilePath; | 18 class FilePath; |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 virtual void PostSpawnTarget(base::ProcessHandle process) {} | 57 virtual void PostSpawnTarget(base::ProcessHandle process) {} |
| 58 | 58 |
| 59 #elif defined(OS_POSIX) | 59 #elif defined(OS_POSIX) |
| 60 // Override this to return true to use the setuid sandbox. | 60 // Override this to return true to use the setuid sandbox. |
| 61 virtual bool ShouldUseZygote(); | 61 virtual bool ShouldUseZygote(); |
| 62 | 62 |
| 63 // Override this if the process needs a non-empty environment map. | 63 // Override this if the process needs a non-empty environment map. |
| 64 virtual base::EnvironmentMap GetEnvironment(); | 64 virtual base::EnvironmentMap GetEnvironment(); |
| 65 | 65 |
| 66 // Return the file descriptor for the IPC channel. | 66 // Return the file descriptor for the IPC channel. |
| 67 virtual int GetIpcFd() = 0; | 67 virtual base::ScopedFD TakeIpcFd() = 0; |
| 68 | 68 |
| 69 #if defined(OS_MACOSX) | 69 #if defined(OS_MACOSX) |
| 70 // Gets the Mac SandboxType to enforce on the process. Return | 70 // Gets the Mac SandboxType to enforce on the process. Return |
| 71 // SANDBOX_TYPE_INVALID for no sandbox policy. | 71 // SANDBOX_TYPE_INVALID for no sandbox policy. |
| 72 virtual SandboxType GetSandboxType(); | 72 virtual SandboxType GetSandboxType(); |
| 73 #endif | 73 #endif |
| 74 | 74 |
| 75 #endif | 75 #endif |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 } // namespace content | 78 } // namespace content |
| 79 | 79 |
| 80 #endif // CONTENT_PUBLIC_COMMON_SANDBOXED_PROCESS_LAUNCHER_DELEGATE_H_ | 80 #endif // CONTENT_PUBLIC_COMMON_SANDBOXED_PROCESS_LAUNCHER_DELEGATE_H_ |
| OLD | NEW |