Chromium Code Reviews| Index: content/browser/sandbox_parameters_mac.h |
| diff --git a/content/browser/sandbox_parameters_mac.h b/content/browser/sandbox_parameters_mac.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..60d3447afce36f7efdf483578c7453781db4c31c |
| --- /dev/null |
| +++ b/content/browser/sandbox_parameters_mac.h |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_BROWSER_SANDBOX_PARAMETERS_MAC_ |
| +#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.
|
| + |
| +namespace sandbox { |
| +class SeatbeltExecClient; |
| +} |
| + |
| +namespace content { |
| + |
| +// Populates the |client| with the parameters that the sandbox needs to |
| +// resolve information that cannot be known at build time, such as |
| +// the user's home directory. |
| +void SetupRendererSandboxParameters(sandbox::SeatbeltExecClient* client); |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_SANDBOX_PARAMETERS_MAC_ |