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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.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/elements/ComputedStyleModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js b/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js
index e702b30fa0099e42351e5b94d3fb1afe3f6cc922..cfa0ac4225f27cdf4fe1a523e87d3b32efc5b3f1 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js
@@ -11,12 +11,12 @@ WebInspector.ComputedStyleModel = function()
WebInspector.Object.call(this);
this._node = WebInspector.context.flavor(WebInspector.DOMNode);
WebInspector.context.addFlavorChangeListener(WebInspector.DOMNode, this._onNodeChanged, this);
-}
+};
/** @enum {symbol} */
WebInspector.ComputedStyleModel.Events = {
ComputedStyleChanged: Symbol("ComputedStyleChanged")
-}
+};
WebInspector.ComputedStyleModel.prototype = {
/**
@@ -156,7 +156,7 @@ WebInspector.ComputedStyleModel.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -167,4 +167,4 @@ WebInspector.ComputedStyleModel.ComputedStyle = function(node, computedStyle)
{
this.node = node;
this.computedStyle = computedStyle;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698