diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-03 03:26:54 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-03 03:26:54 +0000 |
commit | bbf2f954ea4b583dd223a1729d0dec9e6d0284c1 (patch) | |
tree | b7f69746e8f30889d4823bdb7df409eecf957d19 /sandbox/src/policy_broker.cc | |
parent | 42ff2c813339961af8e09a372979a7bf7be77a5d (diff) | |
download | chromium_src-bbf2f954ea4b583dd223a1729d0dec9e6d0284c1.zip chromium_src-bbf2f954ea4b583dd223a1729d0dec9e6d0284c1.tar.gz chromium_src-bbf2f954ea4b583dd223a1729d0dec9e6d0284c1.tar.bz2 |
Porting sbox IPC to 64 bit
-IPC unit tests enabled
-Integration IPCTest test enabled
-All unit test pass (62 tests)
Other tests require interceptor fu.
BUG=27218
TEST= unit tests included
Review URL: http://codereview.chromium.org/661299
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40485 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/src/policy_broker.cc')
-rw-r--r-- | sandbox/src/policy_broker.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/src/policy_broker.cc b/sandbox/src/policy_broker.cc index 1b26938..82701ed 100644 --- a/sandbox/src/policy_broker.cc +++ b/sandbox/src/policy_broker.cc @@ -89,7 +89,7 @@ bool SetupNtdllImports(TargetProcess *child) { bool SetupBasicInterceptions(InterceptionManager* manager) { #if !defined(_WIN64) - // Bug 27218: We don't have IPC yet. + // Bug 27218: We don't have dispatch for some x64 syscalls. // Interceptions provided by process_thread_policy, without actual policy. if (!INTERCEPT_NT(manager, NtOpenThread, OPEN_TREAD_ID, 20) || !INTERCEPT_NT(manager, NtOpenProcess, OPEN_PROCESS_ID, 20) || @@ -105,7 +105,7 @@ bool SetupBasicInterceptions(InterceptionManager* manager) { if (win_util::GetWinVersion() >= win_util::WINVERSION_XP) { #if !defined(_WIN64) - // Bug 27218: We don't have IPC yet. + // Bug 27218: We don't have dispatch for some x64 syscalls. // This one is also provided by process_thread_policy. if (!INTERCEPT_NT(manager, NtOpenProcessTokenEx, OPEN_PROCESS_TOKEN_EX_ID, 20)) |