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) { |