Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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_ | |
| 6 #define CONTENT_BROWSER_SANDBOX_PARAMETERS_MAC_ | |
|
Robert Sesek
2017/06/14 17:47:00
nit: needs trailing _H_
Greg K
2017/06/14 20:26:34
Done.
| |
| 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_ | |
| OLD | NEW |