diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 22:37:16 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 22:37:16 +0000 |
commit | 9420c240cd8428c63530675e25e97702a007a848 (patch) | |
tree | 2915461707676a6074a8f384acfa8f1082ab7458 /sandbox/src/sandbox_nt_util.h | |
parent | e603d9502bf6f6a5f0887bc0e0feeb8925d0296e (diff) | |
download | chromium_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/sandbox_nt_util.h')
-rw-r--r-- | sandbox/src/sandbox_nt_util.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sandbox/src/sandbox_nt_util.h b/sandbox/src/sandbox_nt_util.h index 36c22c5..d01407e 100644 --- a/sandbox/src/sandbox_nt_util.h +++ b/sandbox/src/sandbox_nt_util.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -10,7 +10,8 @@ #include "sandbox/src/sandbox_nt_types.h" // Placement new and delete to be used from ntdll interception code. -void* __cdecl operator new(size_t size, sandbox::AllocationType type); +void* __cdecl operator new(size_t size, sandbox::AllocationType type, + void* near_to = NULL); void __cdecl operator delete(void* memory, sandbox::AllocationType type); // Regular placement new and delete |