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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline_model/TracingLayerTree.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/timeline_model/TracingLayerTree.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline_model/TracingLayerTree.js b/third_party/WebKit/Source/devtools/front_end/timeline_model/TracingLayerTree.js
index cc91f86c66808341e005ea95ea7b867467ec60ca..25fe40550262fb3081dd6ff3518d49f853fee678 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline_model/TracingLayerTree.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline_model/TracingLayerTree.js
@@ -44,7 +44,7 @@ WebInspector.TracingLayerTree = function(target)
WebInspector.LayerTreeBase.call(this, target);
/** @type {!Map.<string, !WebInspector.TracingLayerTile>} */
this._tileById = new Map();
-}
+};
WebInspector.TracingLayerTree.prototype = {
/**
@@ -169,7 +169,7 @@ WebInspector.TracingLayerTree.prototype = {
},
__proto__: WebInspector.LayerTreeBase.prototype
-}
+};
/**
* @constructor
@@ -179,7 +179,7 @@ WebInspector.TracingLayerTree.prototype = {
WebInspector.TracingLayer = function(payload)
{
this._reset(payload);
-}
+};
WebInspector.TracingLayer.prototype = {
/**
@@ -496,4 +496,4 @@ WebInspector.TracingLayer.prototype = {
{
return this._drawsContent;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698