blob: 1c8a492a49447499981399ffb96ed4f625b74a64 [file] [log] [blame]
kerrnel0f7a1922017-06-26 23:40:581// 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
8namespace sandbox {
9class SeatbeltExecClient;
10}
11
12namespace 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.
17void SetupRendererSandboxParameters(sandbox::SeatbeltExecClient* client);
18
19} // namespace content
20
21#endif // CONTENT_BROWSER_SANDBOX_PARAMETERS_MAC_H_