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

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: 'Rename HideKeyboardInputFunction to HideKeyboardFunction' 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 2401 matching lines...) Expand 10 before | Expand all | Expand 10 after
2412 }, 2412 },
2413 { "type": "function", 2413 { "type": "function",
2414 "name": "callback", 2414 "name": "callback",
2415 "optional": true, 2415 "optional": true,
2416 "description": "This function is called when the event processing is completed.", 2416 "description": "This function is called when the event processing is completed.",
2417 "parameters": [] 2417 "parameters": []
2418 } 2418 }
2419 ] 2419 ]
2420 }, 2420 },
2421 { 2421 {
2422 "name": "hideKeyboard",
2423 "type": "function",
2424 "description": "Hide the keyboard UI.",
2425 "parameters": [
2426 { "type": "function",
2427 "name": "callback",
2428 "optional": true,
2429 "description": "This function is called when the event processing is completed.",
2430 "parameters": []
2431 }
2432 ]
2433 },
2434 {
2422 "name": "sendHandwritingStroke", 2435 "name": "sendHandwritingStroke",
2423 "type": "function", 2436 "type": "function",
2424 "description": "Send a handwriting event to Chrome.", 2437 "description": "Send a handwriting event to Chrome.",
2425 "parameters": [ 2438 "parameters": [
2426 { 2439 {
2427 "name": "stroke", 2440 "name": "stroke",
2428 "type": "array", 2441 "type": "array",
2429 "items": { 2442 "items": {
2430 "type": "object", 2443 "type": "object",
2431 "properties": { 2444 "properties": {
(...skipping 3148 matching lines...) Expand 10 before | Expand all | Expand 10 after
5580 { 5593 {
5581 "type": "integer", 5594 "type": "integer",
5582 "name": "tabId", 5595 "name": "tabId",
5583 "description": "The id of the tab that was detached." 5596 "description": "The id of the tab that was detached."
5584 } 5597 }
5585 ] 5598 ]
5586 } 5599 }
5587 ] 5600 ]
5588 } 5601 }
5589 ] 5602 ]
OLDNEW
« no previous file with comments | « chrome/browser/ui/touch/frame/touch_browser_frame_view.cc ('k') | content/common/notification_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698