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/interception.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/interception.h')
-rw-r--r-- | sandbox/src/interception.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/src/interception.h b/sandbox/src/interception.h index 261a6cf..3dd3639 100644 --- a/sandbox/src/interception.h +++ b/sandbox/src/interception.h @@ -228,7 +228,7 @@ class InterceptionManager { // (WINAPI = with the "C" underscore). #if SANDBOX_EXPORTS #if defined(_WIN64) -#define MAKE_SERVICE_NAME(service, params) Target ## service ## 64 +#define MAKE_SERVICE_NAME(service, params) "Target" # service "64" #else #define MAKE_SERVICE_NAME(service, params) "_Target" # service "@" # params #endif |