OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_input_method_delegate.h" | 5 #include "ui/base/ime/chromeos/fake_input_method_delegate.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 namespace input_method { | 8 namespace input_method { |
9 | 9 |
10 FakeInputMethodDelegate::FakeInputMethodDelegate() | 10 FakeInputMethodDelegate::FakeInputMethodDelegate() |
11 : active_locale_("en") { | 11 : active_locale_("en") { |
12 } | 12 } |
13 | 13 |
14 FakeInputMethodDelegate::~FakeInputMethodDelegate() { | 14 FakeInputMethodDelegate::~FakeInputMethodDelegate() { |
15 } | 15 } |
(...skipping 16 matching lines...) Expand all Loading... |
32 return base::string16(); | 32 return base::string16(); |
33 } | 33 } |
34 | 34 |
35 void FakeInputMethodDelegate::SetHardwareKeyboardLayoutForTesting( | 35 void FakeInputMethodDelegate::SetHardwareKeyboardLayoutForTesting( |
36 const std::string& layout) { | 36 const std::string& layout) { |
37 set_hardware_keyboard_layout(layout); | 37 set_hardware_keyboard_layout(layout); |
38 } | 38 } |
39 | 39 |
40 } // namespace input_method | 40 } // namespace input_method |
41 } // namespace chromeos | 41 } // namespace chromeos |
OLD | NEW |