| OLD | NEW |
| 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 Loading... |
| 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 ] |
| OLD | NEW |