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

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

Issue 3058044: Revert 54955 - Merge 54514 ... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/479/src/
Patch Set: Created 10 years, 4 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/notification_type.h » ('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 3013 matching lines...) Expand 10 before | Expand all | Expand 10 after
3024 {"type": "string", "name": "message"} 3024 {"type": "string", "name": "message"}
3025 ] 3025 ]
3026 }, 3026 },
3027 { 3027 {
3028 "name": "createIncognitoTab", 3028 "name": "createIncognitoTab",
3029 "type": "function", 3029 "type": "function",
3030 "description": "Creates an incognito tab during internal testing. Succee ds even if the extension is not enabled in incognito mode.", 3030 "description": "Creates an incognito tab during internal testing. Succee ds even if the extension is not enabled in incognito mode.",
3031 "parameters": [ 3031 "parameters": [
3032 {"type": "string", "name": "url"} 3032 {"type": "string", "name": "url"}
3033 ] 3033 ]
3034 },
3035 {
3036 "name": "sendMessage",
3037 "type": "function",
3038 "description": "Sends a string message to the browser process, generatin g a Notification that C++ test code can wait for.",
3039 "parameters": [
3040 {"type": "string", "name": "message"}
3041 ]
3042 } 3034 }
3043 ], 3035 ],
3044 "events": [ 3036 "events": [
3045 { 3037 {
3046 "name": "onMessage", 3038 "name": "onMessage",
3047 "type": "function", 3039 "type": "function",
3048 "unprivileged": true, 3040 "unprivileged": true,
3049 "description": "Used to test sending messages to extensions.", 3041 "description": "Used to test sending messages to extensions.",
3050 "parameters": [ 3042 "parameters": [
3051 { 3043 {
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
3219 { 3211 {
3220 "name": "onInputCancelled", 3212 "name": "onInputCancelled",
3221 "perExtensionEvent": true, 3213 "perExtensionEvent": true,
3222 "type": "function", 3214 "type": "function",
3223 "description": "User has ended the keyword input session without accepti ng the input.", 3215 "description": "User has ended the keyword input session without accepti ng the input.",
3224 "parameters": [] 3216 "parameters": []
3225 } 3217 }
3226 ] 3218 ]
3227 } 3219 }
3228 ] 3220 ]
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/notification_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698