| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chromeos/ime/mock_input_method_delegate.h" | |
| 6 | |
| 7 namespace chromeos { | |
| 8 namespace input_method { | |
| 9 | |
| 10 MockInputMethodDelegate::MockInputMethodDelegate() | |
| 11 : active_locale_("en") { | |
| 12 } | |
| 13 | |
| 14 MockInputMethodDelegate::~MockInputMethodDelegate() { | |
| 15 } | |
| 16 | |
| 17 std::string MockInputMethodDelegate::GetHardwareKeyboardLayout() const { | |
| 18 return hardware_keyboard_layout_; | |
| 19 } | |
| 20 | |
| 21 std::string MockInputMethodDelegate::GetActiveLocale() const { | |
| 22 return active_locale_; | |
| 23 } | |
| 24 | |
| 25 } // namespace input_method | |
| 26 } // namespace chromeos | |
| OLD | NEW |