diff options
author | cpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-20 02:44:30 +0000 |
---|---|---|
committer | cpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-20 02:44:30 +0000 |
commit | ce4e1b0221cfebad0325137dc5330495775d97c2 (patch) | |
tree | a60d872b2796754f2ae5a4717e1d9b4403b9d1f4 /sandbox/src/interception_internal.h | |
parent | 54d80bb02aa71eb957a863109392cd97ea1e2496 (diff) | |
download | chromium_src-ce4e1b0221cfebad0325137dc5330495775d97c2.zip chromium_src-ce4e1b0221cfebad0325137dc5330495775d97c2.tar.gz chromium_src-ce4e1b0221cfebad0325137dc5330495775d97c2.tar.bz2 |
Redo change 2413 that I had to back out before
- CL is identical and was already lgtm
TBR=rvargas
Review URL: http://codereview.chromium.org/3179
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2435 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/src/interception_internal.h')
-rw-r--r-- | sandbox/src/interception_internal.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sandbox/src/interception_internal.h b/sandbox/src/interception_internal.h index 67cfe31..e6e91bf 100644 --- a/sandbox/src/interception_internal.h +++ b/sandbox/src/interception_internal.h @@ -3,11 +3,11 @@ // found in the LICENSE file. // Defines InterceptionManager, the class in charge of setting up interceptions -// for the sandboxed process. For more datails see +// for the sandboxed process. For more details see: // http://wiki/Main/ChromeSandboxInterceptionDesign -#ifndef SANDBOX_SRC_INTERCEPTION_INTERNAL_H__ -#define SANDBOX_SRC_INTERCEPTION_INTERNAL_H__ +#ifndef SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ +#define SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ #include "sandbox/src/sandbox_types.h" @@ -37,6 +37,7 @@ struct DllPatchInfo { size_t record_bytes; // rounded to sizeof(size_t) bytes size_t offset_to_functions; int num_functions; + bool unload_module; wchar_t dll_name[1]; // placeholder for null terminated name // FunctionInfo function_info[] // followed by the functions to intercept }; @@ -66,5 +67,5 @@ struct DllInterceptionData { } // namespace sandbox -#endif // SANDBOX_SRC_INTERCEPTION_INTERNAL_H__ +#endif // SANDBOX_SRC_INTERCEPTION_INTERNAL_H_ |