diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 07:38:06 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 07:38:06 +0000 |
commit | 794e1857d3b0dc0d1e1c962047979c498327da5a (patch) | |
tree | 349e0cf7f992c2ccd5c77d8c8b49f78d29a1e455 /chrome/common | |
parent | ba1d37596d268085bc2cda97116bf6406f51f889 (diff) | |
download | chromium_src-794e1857d3b0dc0d1e1c962047979c498327da5a.zip chromium_src-794e1857d3b0dc0d1e1c962047979c498327da5a.tar.gz chromium_src-794e1857d3b0dc0d1e1c962047979c498327da5a.tar.bz2 |
Add cursor field to SetComposition.
R=mpcomplete@chromium.org
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/8681008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111887 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/extensions/api/extension_api.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index 6ce75e9..53dd613 100644 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -3407,10 +3407,16 @@ }, "selectionStart": { "description": "Position in the text that the selection starts at.", + "optional": true, "type": "integer" }, "selectionEnd": { "description": "Position in the text that the selection ends at.", + "optional": true, + "type": "integer" + }, + "cursor": { + "description": "Position in the text of the cursor.", "type": "integer" }, "segments": { |