1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_
6 #define CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_
8 #include "chrome/test/base/ui_test_utils.h"
10 #include "ui/aura/window.h"
12 namespace ui_test_utils
{
14 // Aura variants of ui_test_utils method. Don't use these directly, they are
15 // used to share code between win-aura and non-win-aura.
16 void HideNativeWindowAura(gfx::NativeWindow window
);
17 bool ShowAndFocusNativeWindowAura(gfx::NativeWindow window
);
19 } // namespace ui_test_utils
21 #endif // CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_