Index: chrome/common/extensions/api/input_ime.json |
diff --git a/chrome/common/extensions/api/input_ime.json b/chrome/common/extensions/api/input_ime.json |
index 939408b2c3373d9b822715c6a28696f80ebdee30..46dc45e76650ff0682fa76789489b204ae066b9f 100644 |
--- a/chrome/common/extensions/api/input_ime.json |
+++ b/chrome/common/extensions/api/input_ime.json |
@@ -15,6 +15,7 @@ |
"type": {"type": "string", "description": "One of keyup or keydown.", "enum": ["keyup", "keydown"]}, |
"requestId": {"type": "string", "description": "The ID of the request."}, |
"key": {"type": "string", "description": "Value of the key being pressed"}, |
+ "code": {"type": "string", "description": "Value of the physical key being pressed. The value is not affected with current keyboard layout or modifier state."}, |
Matt Perry
2013/02/11 19:38:51
affected by*
Seigo Nonaka
2013/02/12 02:22:00
Done.
|
"altKey": {"type": "boolean", "optional": true, "description": "Whether or not the ALT key is pressed."}, |
"ctrlKey": {"type": "boolean", "optional": true, "description": "Whether or not the CTRL key is pressed."}, |
"shiftKey": {"type": "boolean", "optional": true, "description": "Whether or not the SHIFT key is pressed."} |