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. 4 5 #ifndef CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_ 6 #define CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_ 7 8 #include "chrome/test/base/ui_test_utils.h" 9 10 #include "ui/aura/window.h" 11 12 namespace ui_test_utils { 13 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); 18 19 } // namespace ui_test_utils 20 21 #endif // CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_AURA_H_ 22