OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chromeos/ime/fake_ime_keyboard.h" | 5 #include "ui/base/ime/chromeos/fake_ime_keyboard.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 namespace input_method { | 8 namespace input_method { |
9 | 9 |
10 FakeImeKeyboard::FakeImeKeyboard() | 10 FakeImeKeyboard::FakeImeKeyboard() |
11 : set_current_keyboard_layout_by_name_count_(0), | 11 : set_current_keyboard_layout_by_name_count_(0), |
12 auto_repeat_is_enabled_(false) { | 12 auto_repeat_is_enabled_(false) { |
13 } | 13 } |
14 | 14 |
15 FakeImeKeyboard::~FakeImeKeyboard() { | 15 FakeImeKeyboard::~FakeImeKeyboard() { |
(...skipping 29 matching lines...) Expand all Loading... |
45 bool FakeImeKeyboard::IsISOLevel5ShiftAvailable() const { | 45 bool FakeImeKeyboard::IsISOLevel5ShiftAvailable() const { |
46 return false; | 46 return false; |
47 } | 47 } |
48 | 48 |
49 bool FakeImeKeyboard::IsAltGrAvailable() const { | 49 bool FakeImeKeyboard::IsAltGrAvailable() const { |
50 return false; | 50 return false; |
51 } | 51 } |
52 | 52 |
53 } // namespace input_method | 53 } // namespace input_method |
54 } // namespace chromeos | 54 } // namespace chromeos |
OLD | NEW |