OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 SANDBOX_SRC_SANDBOX_POLICY_BASE_H_ | 5 #ifndef SANDBOX_SRC_SANDBOX_POLICY_BASE_H_ |
6 #define SANDBOX_SRC_SANDBOX_POLICY_BASE_H_ | 6 #define SANDBOX_SRC_SANDBOX_POLICY_BASE_H_ |
7 | 7 |
8 #include <Windows.h> | 8 #include <Windows.h> |
9 #include <list> | 9 #include <list> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/logging.h" | |
13 #include "sandbox/src/ipc_tags.h" | 12 #include "sandbox/src/ipc_tags.h" |
14 #include "sandbox/src/sandbox_policy.h" | 13 #include "sandbox/src/sandbox_policy.h" |
15 #include "sandbox/src/win_utils.h" | 14 #include "sandbox/src/win_utils.h" |
16 #include "sandbox/src/crosscall_server.h" | 15 #include "sandbox/src/crosscall_server.h" |
17 | 16 |
18 #include "sandbox/src/policy_engine_params.h" | 17 #include "sandbox/src/policy_engine_params.h" |
19 #include "sandbox/src/policy_engine_opcodes.h" | 18 #include "sandbox/src/policy_engine_opcodes.h" |
20 | 19 |
21 namespace sandbox { | 20 namespace sandbox { |
22 | 21 |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 bool relaxed_interceptions_; | 148 bool relaxed_interceptions_; |
150 // The list of dlls to unload in the target process. | 149 // The list of dlls to unload in the target process. |
151 std::vector<std::wstring> blacklisted_dlls_; | 150 std::vector<std::wstring> blacklisted_dlls_; |
152 | 151 |
153 DISALLOW_COPY_AND_ASSIGN(PolicyBase); | 152 DISALLOW_COPY_AND_ASSIGN(PolicyBase); |
154 }; | 153 }; |
155 | 154 |
156 } // namespace sandbox | 155 } // namespace sandbox |
157 | 156 |
158 #endif // SANDBOX_SRC_SANDBOX_POLICY_BASE_H_ | 157 #endif // SANDBOX_SRC_SANDBOX_POLICY_BASE_H_ |
OLD | NEW |