summaryrefslogtreecommitdiffstats
path: root/sandbox/src/Wow64_64.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/src/Wow64_64.cc')
-rw-r--r--sandbox/src/Wow64_64.cc22
1 files changed, 22 insertions, 0 deletions
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