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

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

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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 eeb3fcb047ca1def42d8fa0ff4bf070b91ce4d33..7116a307b610bca65f9bcb36171028c465e0df30 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js
@@ -8,7 +8,7 @@
*/
WebInspector.ColorSwatch = function()
{
-}
+};
/**
* @return {!WebInspector.ColorSwatch}
@@ -19,7 +19,7 @@ WebInspector.ColorSwatch.create = function()
WebInspector.ColorSwatch._constructor = registerCustomElement("span", "color-swatch", WebInspector.ColorSwatch.prototype);
return /** @type {!WebInspector.ColorSwatch} */(new WebInspector.ColorSwatch._constructor());
-}
+};
WebInspector.ColorSwatch.prototype = {
/**
@@ -111,7 +111,7 @@ WebInspector.ColorSwatch.prototype = {
},
__proto__: HTMLSpanElement.prototype
-}
+};
/**
* @param {!WebInspector.Color} color
@@ -160,7 +160,7 @@ WebInspector.ColorSwatch._nextColorFormat = function(color, curFormat)
default:
return cf.RGBA;
}
-}
+};
/**
* @constructor
@@ -168,7 +168,7 @@ WebInspector.ColorSwatch._nextColorFormat = function(color, curFormat)
*/
WebInspector.BezierSwatch = function()
{
-}
+};
/**
* @return {!WebInspector.BezierSwatch}
@@ -179,7 +179,7 @@ WebInspector.BezierSwatch.create = function()
WebInspector.BezierSwatch._constructor = registerCustomElement("span", "bezier-swatch", WebInspector.BezierSwatch.prototype);
return /** @type {!WebInspector.BezierSwatch} */(new WebInspector.BezierSwatch._constructor());
-}
+};
WebInspector.BezierSwatch.prototype = {
/**
@@ -223,7 +223,7 @@ WebInspector.BezierSwatch.prototype = {
},
__proto__: HTMLSpanElement.prototype
-}
+};
/**
* @constructor
@@ -231,7 +231,7 @@ WebInspector.BezierSwatch.prototype = {
*/
WebInspector.CSSShadowSwatch = function()
{
-}
+};
/**
* @return {!WebInspector.CSSShadowSwatch}
@@ -242,7 +242,7 @@ WebInspector.CSSShadowSwatch.create = function()
WebInspector.CSSShadowSwatch._constructor = registerCustomElement("span", "css-shadow-swatch", WebInspector.CSSShadowSwatch.prototype);
return /** @type {!WebInspector.CSSShadowSwatch} */(new WebInspector.CSSShadowSwatch._constructor());
-}
+};
WebInspector.CSSShadowSwatch.prototype = {
/**
@@ -307,4 +307,4 @@ WebInspector.CSSShadowSwatch.prototype = {
},
__proto__: HTMLSpanElement.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698