| Index: content/browser/bootstrap_sandbox_mac.h
|
| diff --git a/content/browser/bootstrap_sandbox_mac.h b/content/browser/bootstrap_sandbox_mac.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ffb6a6160c16d3e1b09fc6c94e406c3474e67e10
|
| --- /dev/null
|
| +++ b/content/browser/bootstrap_sandbox_mac.h
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2014 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_BOOTSTRAP_SANDBOX_MAC_H_
|
| +#define CONTENT_BROWSER_BOOTSTRAP_SANDBOX_MAC_H_
|
| +
|
| +namespace sandbox {
|
| +class BootstrapSandbox;
|
| +}
|
| +
|
| +namespace content {
|
| +
|
| +// Whether or not the bootstrap sandbox should be enabled.
|
| +bool ShouldEnableBootstrapSandbox();
|
| +
|
| +// Returns the singleton instance of the BootstrapSandox. The returned object
|
| +// is thread-safe.
|
| +// On the first call to this function, the sandbox will be created and all
|
| +// the policies will be registered with it.
|
| +sandbox::BootstrapSandbox* GetBootstrapSandbox();
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_BROWSER_BOOTSTRAP_SANDBOX_MAC_H_
|
|
|