| Index: chrome/common/extensions/api/extension_api.json
|
| diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
|
| index 7f755fcae6a2665a1fedf3f6aa44c2546e0357f5..8b5aa543c128e5f3cccb6232f50034986005da8b 100644
|
| --- a/chrome/common/extensions/api/extension_api.json
|
| +++ b/chrome/common/extensions/api/extension_api.json
|
| @@ -5466,6 +5466,15 @@
|
| "$ref": "HttpHeaders",
|
| "optional": true,
|
| "description": "Only used as a response to the onBeforeSendHeaders event. If set, the request is made with these request headers instead."
|
| + },
|
| + "authCredentials": {
|
| + "type": "object",
|
| + "description": "Only used as a response to the onAuthRequired event. If set, the request is made using the supplied credentials.",
|
| + "optional": true,
|
| + "properties": {
|
| + "username": {"type": "string"},
|
| + "password": {"type": "string"}
|
| + }
|
| }
|
| }
|
| }
|
| @@ -5669,10 +5678,15 @@
|
| "description": "Array of extra information that should be passed to the listener function.",
|
| "items": {
|
| "type": "string",
|
| - "enum": ["statusLine", "responseHeaders"]
|
| + "enum": ["statusLine", "responseHeaders", "blocking"]
|
| }
|
| }
|
| - ]
|
| + ],
|
| + "returns": {
|
| + "$ref": "BlockingResponse",
|
| + "description": "If \"blocking\" is specified in the \"extraInfoSpec\" parameter, the event listener should return an object of this type.",
|
| + "optional": true
|
| + }
|
| },
|
| {
|
| "name": "onResponseStarted",
|
|
|