| Index: ui/base/keycodes/keyboard_code_conversion.cc
|
| diff --git a/ui/base/keycodes/keyboard_code_conversion.cc b/ui/base/keycodes/keyboard_code_conversion.cc
|
| index 0016f6d78cbecdf5b95225c90ce70c323d4df796..26ddd87c13be36e3df5c444874ba3e6dd1d9c9ec 100644
|
| --- a/ui/base/keycodes/keyboard_code_conversion.cc
|
| +++ b/ui/base/keycodes/keyboard_code_conversion.cc
|
| @@ -56,6 +56,10 @@ uint16 GetCharacterFromKeyCode(KeyboardCode key_code, int flags) {
|
| }
|
| }
|
|
|
| + // For IME support.
|
| + if (key_code == ui::VKEY_PROCESSKEY)
|
| + return 0xE5;
|
| +
|
| // Normal characters
|
| if (key_code >= VKEY_0 && key_code <= VKEY_9) {
|
| return shift ? ")!@#$%^&*("[key_code - VKEY_0] :
|
|
|