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 | |
Robert Sesek
2017/06/13 19:05:08
Need #include guards.
Greg K
2017/06/14 17:21:17
Done.
| |
5 namespace sandbox { | |
6 class SeatbeltExecClient; | |
7 } | |
8 | |
9 namespace content { | |
10 | |
11 // Populates the |client| with the parameters that the sandbox needs to | |
12 // resolve information that cannot be known at build time, such as | |
13 // the user's home directory. | |
14 void SetupRendererSandboxParameters(sandbox::SeatbeltExecClient* client); | |
15 | |
16 } // namespace content | |
OLD | NEW |