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 7745b84005213ffbe8e5149ec9166b04b8d0dd0f..8daa773006f51b2807856c600725724d552d0653 100644 |
--- a/chrome/common/extensions/api/extension_api.json |
+++ b/chrome/common/extensions/api/extension_api.json |
@@ -5799,12 +5799,12 @@ |
{ |
"id": "HttpHeaders", |
"type": "array", |
- "description": "An array of HTTP headers, in the form of name/value pairs.", |
+ "description": "An array of HTTP headers. Each header is represented as a dictionary containing the keys <code>name</code> and <code>value</code>.", |
"items": { |
"type": "object", |
"properties": { |
- "name": {"type": "string"}, |
- "value": {"type": "string"} |
+ "name": {"type": "string", "description": "Name of the HTTP header."}, |
+ "value": {"type": "string", "description": "Value of the HTTP header."} |
} |
} |
}, |