| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 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 UI_KEYBOARD_KEYBOARD_TEST_UTIL_ |
| 6 #define UI_KEYBOARD_KEYBOARD_TEST_UTIL_ |
| 7 |
| 8 namespace keyboard { |
| 9 |
| 10 // Waits until the keyboard is shown. Return false if there is no keyboard |
| 11 // window created. |
| 12 bool WaitUntilShown(); |
| 13 |
| 14 // Waits until the keyboard is hidden. Return false if there is no keyboard |
| 15 // window created. |
| 16 bool WaitUntilHidden(); |
| 17 |
| 18 } // namespace keyboard |
| 19 |
| 20 #endif // UI_KEYBOARD_KEYBOARD_TEST_UTIL_ |
| OLD | NEW |