From 4bc818e1dc285910638203a0d94063a9e92e36b0 Mon Sep 17 00:00:00 2001 From: "rvargas@google.com" Date: Thu, 4 Feb 2010 22:47:37 +0000 Subject: Sandbox: Finish the interception manager support for x64. Unit tests and integration tests run (as long as they don't depend on IPCs), both regular and under SANDBOX_EXPORTS. The interception agent is there, but no EAT interceptions yet. BUG=27218 TEST=unit tests/ integration tests. Review URL: http://codereview.chromium.org/565026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38143 0039d316-1c4b-4281-b951-d872f2087c98 --- sandbox/src/Wow64_64.cc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sandbox/src/Wow64_64.cc (limited to 'sandbox/src/Wow64_64.cc') diff --git a/sandbox/src/Wow64_64.cc b/sandbox/src/Wow64_64.cc new file mode 100644 index 0000000..e188d68 --- /dev/null +++ b/sandbox/src/Wow64_64.cc @@ -0,0 +1,22 @@ +// Copyright (c) 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. + +// Wow64 implementation for native 64-bit Windows (in other words, never WOW). + +#include "sandbox/src/wow64.h" + +namespace sandbox { + +Wow64::~Wow64() { +} + +bool Wow64::IsWow64() { + return false; +} + +bool Wow64::WaitForNtdll(DWORD timeout_ms) { + return true; +} + +} // namespace sandbox -- cgit v1.1