Move render_view_context_menu.* and related files out of tab_contents.
[chromium-blink-merge.git] / chrome / test / base / interactive_test_utils_win.cc
blob6ee8640a16934b8be4a83950d470aa6ff232c3d6
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 #include "chrome/test/base/interactive_test_utils.h"
7 #include "base/files/file_path.h"
8 #include "base/logging.h"
9 #include "base/path_service.h"
10 #include "base/strings/stringprintf.h"
11 #include "base/time/time.h"
12 #include "ui/base/test/ui_controls.h"
13 #include "ui/base/win/foreground_helper.h"
14 #include "ui/views/focus/focus_manager.h"
16 #if defined(USE_AURA)
17 #include "chrome/browser/ui/host_desktop.h"
18 #include "chrome/test/base/interactive_test_utils_aura.h"
19 #include "ui/aura/window_event_dispatcher.h"
20 #endif
22 namespace ui_test_utils {
24 void HideNativeWindow(gfx::NativeWindow window) {
25 #if defined(USE_AURA)
26 if (chrome::GetHostDesktopTypeForNativeWindow(window) ==
27 chrome::HOST_DESKTOP_TYPE_ASH) {
28 HideNativeWindowAura(window);
29 return;
31 HWND hwnd = window->GetDispatcher()->host()->GetAcceleratedWidget();
32 #else
33 HWND hwnd = window;
34 #endif
35 ::ShowWindow(hwnd, SW_HIDE);
38 bool ShowAndFocusNativeWindow(gfx::NativeWindow window) {
39 #if defined(USE_AURA)
40 if (chrome::GetHostDesktopTypeForNativeWindow(window) ==
41 chrome::HOST_DESKTOP_TYPE_ASH)
42 ShowAndFocusNativeWindowAura(window);
43 window->Show();
44 // Always make sure the window hosting ash is visible and focused.
45 HWND hwnd = window->GetDispatcher()->host()->GetAcceleratedWidget();
46 #else
47 HWND hwnd = window;
48 #endif
50 ::ShowWindow(hwnd, SW_SHOW);
52 if (GetForegroundWindow() != hwnd) {
53 VLOG(1) << "Forcefully refocusing front window";
54 ui::ForegroundHelper::SetForeground(hwnd);
57 // ShowWindow does not necessarily activate the window. In particular if a
58 // window from another app is the foreground window then the request to
59 // activate the window fails. See SetForegroundWindow for details.
60 return GetForegroundWindow() == hwnd;
63 } // namespace ui_test_utils