michael@0: // Copyright (c) 2011 The Chromium Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: // Wow64 implementation for native 64-bit Windows (in other words, never WOW). michael@0: michael@0: #include "sandbox/win/src/wow64.h" michael@0: michael@0: namespace sandbox { michael@0: michael@0: Wow64::~Wow64() { michael@0: } michael@0: michael@0: bool Wow64::WaitForNtdll() { michael@0: return true; michael@0: } michael@0: michael@0: } // namespace sandbox