| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Defines InterceptionManager, the class in charge of setting up interceptions | 5 // Defines InterceptionManager, the class in charge of setting up interceptions |
| 6 // for the sandboxed process. For more details see | 6 // for the sandboxed process. For more details see |
| 7 // http://dev.chromium.org/developers/design-documents/sandbox . | 7 // http://dev.chromium.org/developers/design-documents/sandbox . |
| 8 | 8 |
| 9 #ifndef SANDBOX_SRC_INTERCEPTION_H_ | 9 #ifndef SANDBOX_SRC_INTERCEPTION_H_ |
| 10 #define SANDBOX_SRC_INTERCEPTION_H_ | 10 #define SANDBOX_SRC_INTERCEPTION_H_ |
| 11 | 11 |
| 12 #include <stddef.h> | |
| 13 | |
| 14 #include <list> | 12 #include <list> |
| 15 #include <string> | 13 #include <string> |
| 16 | 14 |
| 15 #include "base/basictypes.h" |
| 17 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
| 18 #include "base/macros.h" | |
| 19 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
| 20 #include "sandbox/win/src/sandbox_types.h" | 18 #include "sandbox/win/src/sandbox_types.h" |
| 21 | 19 |
| 22 namespace sandbox { | 20 namespace sandbox { |
| 23 | 21 |
| 24 class TargetProcess; | 22 class TargetProcess; |
| 25 enum InterceptorId; | 23 enum InterceptorId; |
| 26 | 24 |
| 27 // Internal structures used for communication between the broker and the target. | 25 // Internal structures used for communication between the broker and the target. |
| 28 struct DllPatchInfo; | 26 struct DllPatchInfo; |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 // |TargetServices::InitCalled()| returns true, because it is only then that | 275 // |TargetServices::InitCalled()| returns true, because it is only then that |
| 278 // we are guaranteed that our IAT has been initialized. | 276 // we are guaranteed that our IAT has been initialized. |
| 279 #define INTERCEPT_EAT(manager, dll, function, id, num_params) \ | 277 #define INTERCEPT_EAT(manager, dll, function, id, num_params) \ |
| 280 manager->AddToPatchedFunctions(dll, #function, sandbox::INTERCEPTION_EAT, \ | 278 manager->AddToPatchedFunctions(dll, #function, sandbox::INTERCEPTION_EAT, \ |
| 281 MAKE_SERVICE_NAME(function), id) | 279 MAKE_SERVICE_NAME(function), id) |
| 282 #endif // SANDBOX_EXPORTS | 280 #endif // SANDBOX_EXPORTS |
| 283 | 281 |
| 284 } // namespace sandbox | 282 } // namespace sandbox |
| 285 | 283 |
| 286 #endif // SANDBOX_SRC_INTERCEPTION_H_ | 284 #endif // SANDBOX_SRC_INTERCEPTION_H_ |
| OLD | NEW |