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

Unified Diff: third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js

Issue 2817593004: [DevTools] Move eye dropper functionality from protocol to embedder (Closed)
Patch Set: rebased Created 3 years, 8 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
Index: third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js
diff --git a/third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js b/third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js
index c9b517b534dac533c71ac83a3ac1a8e67162df92..05a6c5e84bf956dd18ef9797f770064f2263a0e7 100644
--- a/third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js
+++ b/third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js
@@ -158,6 +158,13 @@
}
/**
+ * @param {!{r: number, g: number, b: number, a: number}} color
+ */
+ eyeDropperPickedColor(color) {
+ this._dispatchOnInspectorFrontendAPI('eyeDropperPickedColor', [color]);
+ }
+
+ /**
* @param {!Array.<!{fileSystemName: string, rootURL: string, fileSystemPath: string}>} fileSystems
*/
fileSystemsLoaded(fileSystems) {
@@ -621,6 +628,14 @@
/**
* @override
+ * @param {boolean} active
+ */
+ setEyeDropperActive(active) {
+ DevToolsAPI.sendMessageToEmbedder('setEyeDropperActive', [active], null);
+ }
+
+ /**
+ * @override
* @param {!Array<string>} certChain
*/
showCertificateViewer(certChain) {

Powered by Google App Engine
This is Rietveld 408576698