Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: ui/events/test/keyboard_layout_mac.cc

Issue 2197113002: Force U.S. English keyboard layout for TextfieldTest.KeysWithModifiersTest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make ScopedKeyboardLayout compile for other platforms Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/events/test/keyboard_layout.cc ('k') | ui/events/test/keyboard_layout_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 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 #include "ui/events/test/keyboard_layout.h"
6
7 #include "base/logging.h"
8
9 namespace ui {
10
11 PlatformKeyboardLayout GetPlatformKeyboardLayout(KeyboardLayout layout) {
12 DCHECK_EQ(layout, KEYBOARD_LAYOUT_ENGLISH_US);
Peter Kasting 2016/08/31 21:16:15 Nit: (expected, actual) You might want a comment
13 const char input_source_id[] = "com.apple.keylayout.US";
14
15 base::ScopedCFTypeRef<CFMutableDictionaryRef> filter_dict(
16 CFDictionaryCreateMutable(kCFAllocatorDefault, 1,
17 &kCFTypeDictionaryKeyCallBacks,
18 &kCFTypeDictionaryValueCallBacks));
19 base::ScopedCFTypeRef<CFStringRef> id_ref(CFStringCreateWithCString(
20 kCFAllocatorDefault, input_source_id, kCFStringEncodingUTF8));
21 CFDictionaryAddValue(filter_dict, kTISPropertyInputSourceID, id_ref);
22 base::ScopedCFTypeRef<CFArrayRef> sources(
23 TISCreateInputSourceList(filter_dict, true));
24 if (CFArrayGetCount(sources) != 1)
25 return PlatformKeyboardLayout();
26
27 return PlatformKeyboardLayout(
28 (TISInputSourceRef)CFArrayGetValueAtIndex(sources, 0));
29 }
30
31 PlatformKeyboardLayout ScopedKeyboardLayout::GetActiveLayout() {
32 return PlatformKeyboardLayout(TISCopyCurrentKeyboardInputSource());
33 }
34
35 bool ScopedKeyboardLayout::ActivateLayout(PlatformKeyboardLayout layout) {
36 DCHECK(layout);
37 return TISSelectInputSource(layout) == noErr;
38 }
39
40 } // namespace ui
OLDNEW
« no previous file with comments | « ui/events/test/keyboard_layout.cc ('k') | ui/events/test/keyboard_layout_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698