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 // 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://wiki/Main/ChromeSandboxInterceptionDesign | 7 // http://dev.chromium.org/developers/design-documents/sandbox . |
8 | 8 |
9 #ifndef SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ | 9 #ifndef SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ |
10 #define SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ | 10 #define SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ |
11 | 11 |
12 #include "sandbox/src/sandbox_types.h" | 12 #include "sandbox/src/sandbox_types.h" |
13 | 13 |
14 namespace sandbox { | 14 namespace sandbox { |
15 | 15 |
16 const int kMaxThunkDataBytes = 64; | 16 const int kMaxThunkDataBytes = 64; |
17 | 17 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 void* base; | 61 void* base; |
62 int num_thunks; | 62 int num_thunks; |
63 ThunkData thunks[1]; | 63 ThunkData thunks[1]; |
64 }; | 64 }; |
65 | 65 |
66 #pragma pack(pop) | 66 #pragma pack(pop) |
67 | 67 |
68 } // namespace sandbox | 68 } // namespace sandbox |
69 | 69 |
70 #endif // SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ | 70 #endif // SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ |
OLD | NEW |