kerrnel | 0f7a192 | 2017-06-26 23:40:58 | [diff] [blame] | 1 | // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CONTENT_BROWSER_SANDBOX_PARAMETERS_MAC_H_ |
| 6 | #define CONTENT_BROWSER_SANDBOX_PARAMETERS_MAC_H_ |
| 7 | |
| 8 | namespace sandbox { |
| 9 | class SeatbeltExecClient; |
| 10 | } |
| 11 | |
| 12 | namespace content { |
| 13 | |
| 14 | // Populates the |client| with the parameters that the sandbox needs to |
| 15 | // resolve information that cannot be known at build time, such as |
| 16 | // the user's home directory. |
| 17 | void SetupRendererSandboxParameters(sandbox::SeatbeltExecClient* client); |
| 18 | |
| 19 | } // namespace content |
| 20 | |
| 21 | #endif // CONTENT_BROWSER_SANDBOX_PARAMETERS_MAC_H_ |