blob: 92111edc882b900a6ccb00d7133413d8794c3e17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2014 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.
#ifndef ASH_TEST_VIRTUAL_KEYBOARD_TEST_HELPER_H_
#define ASH_TEST_VIRTUAL_KEYBOARD_TEST_HELPER_H_
namespace ash {
namespace test {
class VirtualKeyboardTestHelper {
public:
// Mocks the input device configuration so that the on-screen keyboard is
// suppressed.
static void SuppressKeyboard();
};
} // namespace test
} // namespace ash
#endif // ASH_TEST_VIRTUAL_KEYBOARD_TEST_HELPER_H_
|