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

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

Issue 1042004: Committing for dcheng@ (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/docs/experimental.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2486 matching lines...) Expand 10 before | Expand all | Expand 10 after
2497 { 2497 {
2498 "name": "createIncognitoTab", 2498 "name": "createIncognitoTab",
2499 "type": "function", 2499 "type": "function",
2500 "description": "Creates an incognito tab during internal testing. Succee ds even if the extension is not enabled in incognito mode.", 2500 "description": "Creates an incognito tab during internal testing. Succee ds even if the extension is not enabled in incognito mode.",
2501 "parameters": [ 2501 "parameters": [
2502 {"type": "string", "name": "url"} 2502 {"type": "string", "name": "url"}
2503 ] 2503 ]
2504 } 2504 }
2505 ], 2505 ],
2506 "events": [] 2506 "events": []
2507 },
2508 {
2509 "namespace": "experimental.clipboard",
2510 "types": [],
2511 "functions": [
2512 {
2513 "name": "executeCopy",
2514 "type": "function",
2515 "description": "Triggers a copy operation in the specified tab.",
2516 "parameters": [
2517 {"type": "integer", "name": "tabId", "minimum": 0},
2518 {"type": "function", "name": "callback", "optional": true, "parameters ": []}
2519 ]
2520 },
2521 {
2522 "name": "executeCut",
2523 "type": "function",
2524 "description": "Triggers a cut operation in the specified tab.",
2525 "parameters": [
2526 {"type": "integer", "name": "tabId", "minimum": 0},
2527 {"type": "function", "name": "callback", "optional": true, "parameters ": []}
2528 ]
2529 },
2530 {
2531 "name": "executePaste",
2532 "type": "function",
2533 "description": "Triggers a paste operation in the specified tab.",
2534 "parameters": [
2535 {"type": "integer", "name": "tabId", "minimum": 0},
2536 {"type": "function", "name": "callback", "optional": true, "parameters ": []}
2537 ]
2538 }
2539 ],
2540 "events": []
2507 } 2541 }
2508 ] 2542 ]
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/docs/experimental.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698