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_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ | 5 #ifndef CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ |
6 #define CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ | 6 #define CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ |
7 | 7 |
8 #include "chrome/browser/ui/view_ids.h" | 8 #include "chrome/browser/ui/view_ids.h" |
9 #include "chrome/test/base/ui_test_utils.h" | 9 #include "chrome/test/base/ui_test_utils.h" |
10 #include "ui/base/test/ui_controls.h" | 10 #include "ui/base/test/ui_controls.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 // Brings the native window for |browser| to the foreground. Returns true on | 24 // Brings the native window for |browser| to the foreground. Returns true on |
25 // success. | 25 // success. |
26 bool BringBrowserWindowToFront(const Browser* browser) WARN_UNUSED_RESULT; | 26 bool BringBrowserWindowToFront(const Browser* browser) WARN_UNUSED_RESULT; |
27 | 27 |
28 // Returns true if the View is focused. | 28 // Returns true if the View is focused. |
29 bool IsViewFocused(const Browser* browser, ViewID vid); | 29 bool IsViewFocused(const Browser* browser, ViewID vid); |
30 | 30 |
31 // Simulates a mouse click on a View in the browser. | 31 // Simulates a mouse click on a View in the browser. |
32 void ClickOnView(const Browser* browser, ViewID vid); | 32 void ClickOnView(const Browser* browser, ViewID vid); |
33 | 33 |
| 34 // Makes focus shift to the given View without clicking it. |
| 35 void FocusView(const Browser* browser, ViewID vid); |
| 36 |
34 // A collection of utilities that are used from interactive_ui_tests. These are | 37 // A collection of utilities that are used from interactive_ui_tests. These are |
35 // separated from ui_test_utils.h to ensure that browser_tests don't use them, | 38 // separated from ui_test_utils.h to ensure that browser_tests don't use them, |
36 // since they depend on focus which isn't possible for sharded test. | 39 // since they depend on focus which isn't possible for sharded test. |
37 | 40 |
38 // Hide a native window. | 41 // Hide a native window. |
39 void HideNativeWindow(gfx::NativeWindow window); | 42 void HideNativeWindow(gfx::NativeWindow window); |
40 | 43 |
41 // Show and focus a native window. Returns true on success. | 44 // Show and focus a native window. Returns true on success. |
42 bool ShowAndFocusNativeWindow(gfx::NativeWindow window) WARN_UNUSED_RESULT; | 45 bool ShowAndFocusNativeWindow(gfx::NativeWindow window) WARN_UNUSED_RESULT; |
43 | 46 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 // ui_controls_linux.cc and ui_controls_mac.cc | 140 // ui_controls_linux.cc and ui_controls_mac.cc |
138 void ClickTask(ui_controls::MouseButton button, | 141 void ClickTask(ui_controls::MouseButton button, |
139 int state, | 142 int state, |
140 const base::Closure& followup); | 143 const base::Closure& followup); |
141 | 144 |
142 } // namespace internal | 145 } // namespace internal |
143 | 146 |
144 } // namespace ui_test_utils | 147 } // namespace ui_test_utils |
145 | 148 |
146 #endif // CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ | 149 #endif // CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ |
OLD | NEW |