| Index: third_party/WebKit/Source/core/inspector/browser_protocol.json
|
| diff --git a/third_party/WebKit/Source/core/inspector/browser_protocol.json b/third_party/WebKit/Source/core/inspector/browser_protocol.json
|
| index 25d702afa0e2607e624e7f0f59c8e4ae070b1993..a8cbec4201fed4424a8e3fc403f5601373bc9e6a 100644
|
| --- a/third_party/WebKit/Source/core/inspector/browser_protocol.json
|
| +++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json
|
| @@ -1227,9 +1227,14 @@
|
| },
|
| {
|
| "name": "getCookies",
|
| - "parameters": [
|
| - { "name": "global", "type": "boolean", "optional": true, "description": "If true, returns all cookies, otherwise only the cookies for the current URL." }
|
| + "returns": [
|
| + { "name": "cookies", "type": "array", "items": { "$ref": "Cookie" }, "description": "Array of cookie objects." }
|
| ],
|
| + "description": "Returns all browser cookies for the current URL. Depending on the backend support, will return detailed cookie information in the <code>cookies</code> field.",
|
| + "experimental": true
|
| + },
|
| + {
|
| + "name": "getAllCookies",
|
| "returns": [
|
| { "name": "cookies", "type": "array", "items": { "$ref": "Cookie" }, "description": "Array of cookie objects." }
|
| ],
|
|
|