| Index: ui/base/ime/remote_input_method_win.cc
|
| diff --git a/ui/base/ime/remote_input_method_win.cc b/ui/base/ime/remote_input_method_win.cc
|
| index 0b75c0762c2dcba50a0a54012bf2b7f2977e846d..f74dcde666b9c8c7a6c8cf235e62b8f73c0177ec 100644
|
| --- a/ui/base/ime/remote_input_method_win.cc
|
| +++ b/ui/base/ime/remote_input_method_win.cc
|
| @@ -199,8 +199,9 @@ class RemoteInputMethodWin : public InputMethod,
|
|
|
| if (event.is_char()) {
|
| if (text_input_client_) {
|
| - text_input_client_->InsertChar(event.key_code(),
|
| - ui::GetModifiersFromKeyState());
|
| + text_input_client_->InsertChar(
|
| + static_cast<base::char16>(event.key_code()),
|
| + ui::GetModifiersFromKeyState());
|
| }
|
| return true;
|
| }
|
|
|