| 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 2de912fb2bf2a19122ca8992ffeb83c7f35b0efd..72fd7c66b95de04e536ab33f0c35a142221da8e2 100644
|
| --- a/third_party/WebKit/Source/core/inspector/browser_protocol.json
|
| +++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json
|
| @@ -416,8 +416,12 @@
|
| {
|
| "name": "captureScreenshot",
|
| "description": "Capture page screenshot.",
|
| + "parameters": [
|
| + { "name": "format", "type": "string", "optional": true, "enum": ["jpeg", "png"], "description": "Image compression format (defaults to png)." },
|
| + { "name": "quality", "type": "integer", "optional": true, "description": "Compression quality from range [0..100] (jpeg only)." }
|
| + ],
|
| "returns": [
|
| - { "name": "data", "type": "string", "description": "Base64-encoded image data (PNG)." }
|
| + { "name": "data", "type": "string", "description": "Base64-encoded image data." }
|
| ],
|
| "experimental": true
|
| },
|
|
|