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

Side by Side Diff: chrome/common/extensions/api/input_ime.json

Issue 11412268: Add usage display support for Extension IME. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comment Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 { 6 {
7 "namespace": "input.ime", 7 "namespace": "input.ime",
8 "platforms": ["chromeos"], 8 "platforms": ["chromeos"],
9 "types": [ 9 "types": [
10 { 10 {
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "candidates": { 243 "candidates": {
244 "description": "List of candidates to show in the candidate wind ow", 244 "description": "List of candidates to show in the candidate wind ow",
245 "type": "array", 245 "type": "array",
246 "items": { 246 "items": {
247 "type": "object", 247 "type": "object",
248 "properties": { 248 "properties": {
249 "candidate": {"type": "string", "description": "The candidat e"}, 249 "candidate": {"type": "string", "description": "The candidat e"},
250 "id": {"type": "integer", "description": "The candidate's id "}, 250 "id": {"type": "integer", "description": "The candidate's id "},
251 "parentId": {"type": "integer", "optional": true, "descripti on": "The id to add these candidates under"}, 251 "parentId": {"type": "integer", "optional": true, "descripti on": "The id to add these candidates under"},
252 "label": {"type": "string", "optional": true, "description": "Short string displayed to next to the candidate, often the shortcut key or ind ex"}, 252 "label": {"type": "string", "optional": true, "description": "Short string displayed to next to the candidate, often the shortcut key or ind ex"},
253 "annotation": {"type": "string", "optional": true, "descript ion": "Additional text describing the candidate"} 253 "annotation": {"type": "string", "optional": true, "descript ion": "Additional text describing the candidate"},
254 "usage": {
255 "type": "object",
256 "optional": true,
257 "description": "The usage or detail description of word.",
258 "properties": {
259 "title": { "type": "string", "description": "The title s tring of details description."},
260 "body": { "type": "string", "description": "The body str ing of detail description."}
261 }
262 }
254 } 263 }
255 } 264 }
256 } 265 }
257 } 266 }
258 }, 267 },
259 { 268 {
260 "type": "function", 269 "type": "function",
261 "name": "callback", 270 "name": "callback",
262 "optional": true, 271 "optional": true,
263 "description": "Called when the operation completes.", 272 "description": "Called when the operation completes.",
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 { 537 {
529 "type": "string", 538 "type": "string",
530 "name": "name", 539 "name": "name",
531 "description": "Name of the MenuItem which was activated" 540 "description": "Name of the MenuItem which was activated"
532 } 541 }
533 ] 542 ]
534 } 543 }
535 ] 544 ]
536 } 545 }
537 ] 546 ]
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_input_module_constants.cc ('k') | chromeos/dbus/ibus/ibus_lookup_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698