Chromium Code Reviews| Index: Source/devtools/protocol.json |
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
| index 5949e6ca775b5e77aff015be90c246e48fa90bae..0bb4589728748b3f2e283c30db90f6c28a1fbf63 100644 |
| --- a/Source/devtools/protocol.json |
| +++ b/Source/devtools/protocol.json |
| @@ -550,6 +550,15 @@ |
| "description": "Queries more detailed quota and usage data than Storage API provides.", |
| "hidden": true, |
| "handlers": ["browser"] |
| + }, |
| + { |
| + "name": "setColorPickerEnabled", |
| + "parameters": [ |
| + { "name": "enabled", "type": "boolean", "description": "Shows / hides color picker" } |
| + ], |
| + "description": "Shows / hides color picker", |
| + "hidden": true, |
| + "handlers": ["browser"] |
| } |
| ], |
| "events": [ |
| @@ -671,6 +680,15 @@ |
| { "name": "viewport", "$ref": "Viewport", "description": "Viewport description." } |
| ], |
| "hidden": true |
| + }, |
| + { |
| + "name": "colorPicked", |
| + "description": "Fired when a color has been picked.", |
| + "parameters": [ |
| + { "name": "color", "type": "string", "description": "Color" } |
| + ], |
| + "hidden": true, |
| + "handlers": ["browser"] |
|
vsevik
2014/08/15 16:36:00
Is this needed?
pfeldman
2014/08/15 16:37:56
Yep. It is issued from the browser.
|
| } |
| ] |
| }, |