Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4399)

Unified Diff: chrome/common/extensions/api/input_method_private.json

Issue 641243005: Support a private event - inputMethodPrivate.onCompositionBoundsChanged so that component IME exten… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits + unit test Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/api/input_ime/input_ime_api.cc ('k') | ui/base/ime/chromeos/ime_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/input_method_private.json
diff --git a/chrome/common/extensions/api/input_method_private.json b/chrome/common/extensions/api/input_method_private.json
index d7d20745a0b67321763ca1f73b1c32e93193ddfe..e3ce1d713105019d0671f654782edd6e6571e33b 100644
--- a/chrome/common/extensions/api/input_method_private.json
+++ b/chrome/common/extensions/api/input_method_private.json
@@ -109,6 +109,23 @@
"description": "New input method which is being used."
}
]
+ }, {
+ "name": "onCompositionBoundsChanged",
+ "type": "function",
+ "description": "Fired when the composition bounds are changed.",
+ "parameters": [
+ {
+ "name": "bounds",
+ "type": "object",
+ "description": "Composition bounds.",
+ "properties": {
+ "x": {"type": "integer"},
+ "y": {"type": "integer"},
+ "w": {"type": "integer"},
+ "h": {"type": "integer"}
+ }
+ }
+ ]
}
]
}
« no previous file with comments | « chrome/browser/extensions/api/input_ime/input_ime_api.cc ('k') | ui/base/ime/chromeos/ime_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698