blob: 61f0d3ef60e6ad2a176c9104d67d58ebb1e983b4 [file] [log] [blame]
// Copyright (c) 2012 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.
#include "chrome/test/base/interactive_test_utils_aura.h"
#include "build/build_config.h"
#include "chrome/test/base/interactive_test_utils.h"
#include "ui/aura/window.h"
namespace ui_test_utils {
#if !defined(OS_WIN)
void HideNativeWindow(gfx::NativeWindow window) {
HideNativeWindowAura(window);
}
bool ShowAndFocusNativeWindow(gfx::NativeWindow window) {
return ShowAndFocusNativeWindowAura(window);
}
#endif
void HideNativeWindowAura(gfx::NativeWindow window) {
window->Hide();
}
bool ShowAndFocusNativeWindowAura(gfx::NativeWindow window) {
window->Show();
window->Focus();
return true;
}
} // namespace ui_test_utils