Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1282)

Unified Diff: Source/devtools/protocol.json

Issue 475233003: DevTools: front-end part of color picker (behind experiment). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/sdk/ResourceTreeModel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
}
]
},
« no previous file with comments | « Source/devtools/front_end/sdk/ResourceTreeModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698