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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js

Issue 2252913002: DevTools: Box-shadow editor initial implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shadowIcon
Patch Set: Heavily updated Created 4 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
Index: third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js b/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js
index 5c657d862bc8951c786085d9c65123f029265357..27a34c8dfee0003c02a26a98f2232791056779e0 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js
@@ -200,6 +200,14 @@ WebInspector.CSSShadowSwatch.create = function()
WebInspector.CSSShadowSwatch.prototype = {
/**
+ * @return {!WebInspector.CSSShadowModel} cssShadowModel
+ */
+ cssShadowModel: function()
dgozman 2016/08/24 19:18:30 model
flandy 2016/08/24 22:08:41 Done.
+ {
+ return this._cssShadowModel;
+ },
+
+ /**
* @param {!WebInspector.CSSShadowModel} cssShadowModel
*/
setCSSShadow: function(cssShadowModel)

Powered by Google App Engine
This is Rietveld 408576698