| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_COMMON_SANDBOX_WIN_H_ | 5 #ifndef CONTENT_COMMON_SANDBOX_WIN_H_ |
| 6 #define CONTENT_COMMON_SANDBOX_WIN_H_ | 6 #define CONTENT_COMMON_SANDBOX_WIN_H_ |
| 7 | 7 |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 #include "sandbox/win/src/security_level.h" | 9 #include "sandbox/win/src/security_level.h" |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 sandbox::JobLevel job_level, | 26 sandbox::JobLevel job_level, |
| 27 uint32 ui_exceptions, | 27 uint32 ui_exceptions, |
| 28 sandbox::TargetPolicy* policy); | 28 sandbox::TargetPolicy* policy); |
| 29 | 29 |
| 30 // Closes handles that are opened at process creation and initialization. | 30 // Closes handles that are opened at process creation and initialization. |
| 31 void AddBaseHandleClosePolicy(sandbox::TargetPolicy* policy); | 31 void AddBaseHandleClosePolicy(sandbox::TargetPolicy* policy); |
| 32 | 32 |
| 33 // Add AppContainer policy for |sid| on supported OS. | 33 // Add AppContainer policy for |sid| on supported OS. |
| 34 void AddAppContainerPolicy(sandbox::TargetPolicy* policy, const wchar_t* sid); | 34 void AddAppContainerPolicy(sandbox::TargetPolicy* policy, const wchar_t* sid); |
| 35 | 35 |
| 36 // Add the win32k lockdown policy on supported OS. |
| 37 bool AddWin32kLockdownPolicy(sandbox::TargetPolicy* policy); |
| 38 |
| 36 bool InitBrokerServices(sandbox::BrokerServices* broker_services); | 39 bool InitBrokerServices(sandbox::BrokerServices* broker_services); |
| 37 | 40 |
| 38 bool InitTargetServices(sandbox::TargetServices* target_services); | 41 bool InitTargetServices(sandbox::TargetServices* target_services); |
| 39 | 42 |
| 40 } // namespace content | 43 } // namespace content |
| 41 | 44 |
| 42 #endif // CONTENT_COMMON_SANDBOX_WIN_H_ | 45 #endif // CONTENT_COMMON_SANDBOX_WIN_H_ |
| OLD | NEW |