diff options
author | gregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-11 00:49:11 +0000 |
---|---|---|
committer | gregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-11 00:49:11 +0000 |
commit | bb74090c99b24d5bc539f6c5c9fcfdca14174be0 (patch) | |
tree | ea41eabc2bc163fba2d906aac851e58bf2e33d9a /sandbox/src/sandbox.cc | |
parent | 8f763a300158b4917e0cc1267f4c7d45fa72b572 (diff) | |
download | chromium_src-bb74090c99b24d5bc539f6c5c9fcfdca14174be0.zip chromium_src-bb74090c99b24d5bc539f6c5c9fcfdca14174be0.tar.gz chromium_src-bb74090c99b24d5bc539f6c5c9fcfdca14174be0.tar.bz2 |
64-bit compatibility changes for the sandbox code
This CL contains some basic changes that eliminate some of the warnings that appear when the sandbox code is compiled for 64-bit Windows. This is part of a larger effort to support Native Client on 64-bit Windows (that will require the sandbox to support 64-bit Windows).
TEST=will be tested when the rest of the code builds for 64-bit Windows
BUG=27218
Review URL: http://codereview.chromium.org/378030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31625 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/src/sandbox.cc')
-rw-r--r-- | sandbox/src/sandbox.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sandbox/src/sandbox.cc b/sandbox/src/sandbox.cc index 0943d10..f0b42bf 100644 --- a/sandbox/src/sandbox.cc +++ b/sandbox/src/sandbox.cc @@ -9,6 +9,13 @@ #include "sandbox/src/broker_services.h" #include "sandbox/src/target_services.h" +#ifdef _WIN64 +#error Sandbox code was not tested on 64-bit Windows. See \ + http://code.google.com/p/chromium/issues/detail?id=27218 for details \ + and progress log. +#endif + + namespace sandbox { // The section for IPC and policy. SANDBOX_INTERCEPT HANDLE g_shared_section = NULL; |