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 SERVICES_NETWORK_NETWORK_SANDBOX_HOOK_LINUX_H_
6 #define SERVICES_NETWORK_NETWORK_SANDBOX_HOOK_LINUX_H_
7 
8 #include "base/component_export.h"
9 #include "services/service_manager/sandbox/linux/sandbox_linux.h"
10 
11 namespace network {
12 
13 COMPONENT_EXPORT(NETWORK_SERVICE)
14 bool NetworkPreSandboxHook(service_manager::SandboxLinux::Options options);
15 
16 }  // namespace network
17 
18 #endif  // SERVICES_NETWORK_NETWORK_SANDBOX_HOOK_LINUX_H_
19