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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.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/sources/WatchExpressionsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
index bf0207cf8589ded739e92883e8e852c8ded1c6b8..2901f04e1ab88510d2deace66d370b38c4a264a9 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
@@ -57,7 +57,7 @@ WebInspector.WatchExpressionsSidebarPane = function()
WebInspector.context.addFlavorChangeListener(WebInspector.DebuggerModel.CallFrame, this.update, this);
this._linkifier = new WebInspector.Linkifier();
this.update();
-}
+};
WebInspector.WatchExpressionsSidebarPane.prototype = {
/**
@@ -230,7 +230,7 @@ WebInspector.WatchExpressionsSidebarPane.prototype = {
},
__proto__: WebInspector.ThrottledWidget.prototype
-}
+};
/**
* @constructor
@@ -249,14 +249,14 @@ WebInspector.WatchExpression = function(expression, expandController, linkifier)
this._createWatchExpression(null);
this.update();
-}
+};
WebInspector.WatchExpression._watchObjectGroupId = "watch-group";
/** @enum {symbol} */
WebInspector.WatchExpression.Events = {
ExpressionUpdated: Symbol("ExpressionUpdated")
-}
+};
WebInspector.WatchExpression.prototype = {
@@ -460,4 +460,4 @@ WebInspector.WatchExpression.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698