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

Unified Diff: third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.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/layer_viewer/LayerTreeOutline.js
diff --git a/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js b/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js
index 3cb635a8f8fb91b9af8da46b94fd4e3ee1a64787..ae7424c2a3944e9a64f5abbf46e1cb5c3a720587 100644
--- a/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js
+++ b/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js
@@ -49,7 +49,7 @@ WebInspector.LayerTreeOutline = function(layerViewHost)
this._lastHoveredNode = null;
this.element = this._treeOutline.element;
this._layerViewHost.showInternalLayersSetting().addChangeListener(this._update, this);
-}
+};
WebInspector.LayerTreeOutline.prototype = {
focus: function()
@@ -211,7 +211,7 @@ WebInspector.LayerTreeOutline.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -226,7 +226,7 @@ WebInspector.LayerTreeElement = function(tree, layer)
this._layer = layer;
this._layer[WebInspector.LayerTreeElement._symbol] = this;
this._update();
-}
+};
WebInspector.LayerTreeElement._symbol = Symbol("layer");
@@ -260,4 +260,4 @@ WebInspector.LayerTreeElement.prototype = {
},
__proto__: TreeElement.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698