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

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

Issue 174633: Add browser tests for extensions tab API. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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/common/common_resources.grd ('k') | chrome/renderer/renderer_resources.grd » ('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 "types": [ 4 "types": [
5 { 5 {
6 "id": "Port", 6 "id": "Port",
7 "type": "object", 7 "type": "object",
8 "description": "An object which allows two way communication with other pages.", 8 "description": "An object which allows two way communication with other pages.",
9 "properties": { 9 "properties": {
10 "name": {"type": "string"}, 10 "name": {"type": "string"},
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 {"type": "string", "name": "message"} 939 {"type": "string", "name": "message"}
940 ] 940 ]
941 }, 941 },
942 { 942 {
943 "name": "notifyPass", 943 "name": "notifyPass",
944 "type": "function", 944 "type": "function",
945 "description": "Notify the browser process that test code running in the extension passed. This is only used for internal unit testing.", 945 "description": "Notify the browser process that test code running in the extension passed. This is only used for internal unit testing.",
946 "parameters": [ 946 "parameters": [
947 {"type": "string", "name": "message", "optional": true} 947 {"type": "string", "name": "message", "optional": true}
948 ] 948 ]
949 },
950 {
951 "name": "log",
952 "type": "function",
953 "description": "Logs a message during internal unit testing.",
954 "parameters": [
955 {"type": "string", "name": "message"}
956 ]
949 } 957 }
950 ], 958 ],
951 "events": [] 959 "events": []
952 } 960 }
953 ] 961 ]
OLDNEW
« no previous file with comments | « chrome/common/common_resources.grd ('k') | chrome/renderer/renderer_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698