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