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

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

Issue 7033033: Add hideKeyboard API to chrome.experimental.input. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "unprivileged": true, 4 "unprivileged": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "MessageSender", 7 "id": "MessageSender",
8 "type": "object", 8 "type": "object",
9 "description": "An object containing information about the script contex t that sent a message or request.", 9 "description": "An object containing information about the script contex t that sent a message or request.",
10 "properties": { 10 "properties": {
(...skipping 2524 matching lines...) Expand 10 before | Expand all | Expand 10 after
2535 "type": "function", 2535 "type": "function",
2536 "description": "Notify input method engine page down button was clicked. ", 2536 "description": "Notify input method engine page down button was clicked. ",
2537 "parameters": [ 2537 "parameters": [
2538 { "type": "function", 2538 { "type": "function",
2539 "name": "callback", 2539 "name": "callback",
2540 "optional": true, 2540 "optional": true,
2541 "description": "This function is called when the event processing is completed.", 2541 "description": "This function is called when the event processing is completed.",
2542 "parameters": [] 2542 "parameters": []
2543 } 2543 }
2544 ] 2544 ]
2545 },
2546 {
2547 "name": "hideKeyboard",
2548 "type": "function",
2549 "description": "Hide the keyboard UI.",
2550 "parameters": [
2551 { "type": "function",
2552 "name": "callback",
2553 "optional": true,
2554 "description": "This function is called when the event processing is completed.",
2555 "parameters": []
2556 }
2557 ]
2545 } 2558 }
2546 ], 2559 ],
2547 "events": [ 2560 "events": [
2548 { 2561 {
2549 "name": "onSetCursorLocation", 2562 "name": "onSetCursorLocation",
2550 "type": "function", 2563 "type": "function",
2551 "description": "Fired when input cursor location is changed.", 2564 "description": "Fired when input cursor location is changed.",
2552 "parameters": [ 2565 "parameters": [
2553 { "type": "integer", 2566 { "type": "integer",
2554 "name": "x" 2567 "name": "x"
(...skipping 3002 matching lines...) Expand 10 before | Expand all | Expand 10 after
5557 { 5570 {
5558 "type": "integer", 5571 "type": "integer",
5559 "name": "tabId", 5572 "name": "tabId",
5560 "description": "The id of the tab that was detached." 5573 "description": "The id of the tab that was detached."
5561 } 5574 }
5562 ] 5575 ]
5563 } 5576 }
5564 ] 5577 ]
5565 } 5578 }
5566 ] 5579 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698