summaryrefslogtreecommitdiffstats
path: root/sandbox/src/interception_internal.h
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-10 22:37:16 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-10 22:37:16 +0000
commit9420c240cd8428c63530675e25e97702a007a848 (patch)
tree2915461707676a6074a8f384acfa8f1082ab7458 /sandbox/src/interception_internal.h
parente603d9502bf6f6a5f0887bc0e0feeb8925d0296e (diff)
downloadchromium_src-9420c240cd8428c63530675e25e97702a007a848.zip
chromium_src-9420c240cd8428c63530675e25e97702a007a848.tar.gz
chromium_src-9420c240cd8428c63530675e25e97702a007a848.tar.bz2
Sandbox: Add support for EAT interceptions in 64 bit.
BUG=27218 TEST=manual integration tests. Review URL: http://codereview.chromium.org/600035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38681 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/src/interception_internal.h')
-rw-r--r--sandbox/src/interception_internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sandbox/src/interception_internal.h b/sandbox/src/interception_internal.h
index 2447a67..f3c401c 100644
--- a/sandbox/src/interception_internal.h
+++ b/sandbox/src/interception_internal.h
@@ -63,6 +63,9 @@ struct DllInterceptionData {
size_t used_bytes;
void* base;
int num_thunks;
+#if defined(_WIN64)
+ int dummy; // Improve alignment.
+#endif
ThunkData thunks[1];
};