// 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.
#ifndef CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_
#define CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_
#include "chrome/test/base/ui_test_utils.h"
#include "ui/aura/window.h"
namespace ui_test_utils {
// Aura variants of ui_test_utils method. Don't use these directly, they are
// used to share code between win-aura and non-win-aura.
void HideNativeWindowAura(gfx::NativeWindow window);
bool ShowAndFocusNativeWindowAura(gfx::NativeWindow window);
} // namespace ui_test_utils
#endif // CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_