Chromium Code Reviews| Index: ui/events/test/keyboard_layout.h |
| diff --git a/ui/events/test/keyboard_layout.h b/ui/events/test/keyboard_layout.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..25289def1027b19ea1702f3cbb9794e092b52c8e |
| --- /dev/null |
| +++ b/ui/events/test/keyboard_layout.h |
| @@ -0,0 +1,57 @@ |
| +// Copyright 2016 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 UI_EVENTS_TEST_KEYBOARD_LAYOUT_H_ |
| +#define UI_EVENTS_TEST_KEYBOARD_LAYOUT_H_ |
| + |
| +#include "base/macros.h" |
| +#include "build/build_config.h" |
| + |
| +#if defined(OS_WIN) |
| +#include <windows.h> |
| +#elif defined(OS_MACOSX) |
| +#include <Carbon/Carbon.h> |
| +#include "base/mac/scoped_cftyperef.h" |
| +#endif |
| + |
| +#if defined(OS_WIN) || defined(OS_MACOSX) |
|
Peter Kasting
2016/08/26 18:54:33
If this header only defines the contents below for
Tomasz Moniuszko
2016/08/31 15:29:42
Right, it won't work for tests which are disabled
|
| +namespace ui { |
| + |
| +enum KeyboardLayout { |
| + KEYBOARD_LAYOUT_ENGLISH_US, |
| + KEYBOARD_LAYOUT_FRENCH, |
| + KEYBOARD_LAYOUT_GERMAN, |
| + KEYBOARD_LAYOUT_GREEK, |
| + KEYBOARD_LAYOUT_JAPANESE, |
| + KEYBOARD_LAYOUT_KOREAN, |
| + KEYBOARD_LAYOUT_RUSSIAN, |
| +}; |
| + |
| +#if defined(OS_WIN) |
| +using PlatformKeyboardLayout = HKL; |
| +#elif defined(OS_MACOSX) |
| +using PlatformKeyboardLayout = base::ScopedCFTypeRef<TISInputSourceRef>; |
| +#endif |
| + |
| +PlatformKeyboardLayout GetPlatformKeyboardLayout(KeyboardLayout layout); |
| + |
| +// Changes the active keyboard layout for the scope of this object. |
| +class ScopedKeyboardLayout { |
| + public: |
| + explicit ScopedKeyboardLayout(KeyboardLayout layout); |
| + ~ScopedKeyboardLayout(); |
| + |
| + private: |
| + static PlatformKeyboardLayout GetActiveLayout(); |
| + static void ActivateLayout(PlatformKeyboardLayout layout); |
| + |
| + PlatformKeyboardLayout original_layout_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(ScopedKeyboardLayout); |
| +}; |
| + |
| +} // namespace ui |
| +#endif // defined(OS_WIN) || defined(OS_MACOSX) |
| + |
| +#endif // UI_EVENTS_TEST_KEYBOARD_LAYOUT_H_ |