blob: b780b8384f10b9f2a8b8c0e340d8049fed1fbc03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// 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 "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();
return true;
}
} // namespace ui_test_utils
|