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

Unified Diff: third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.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/PaintProfilerView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js b/third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js
index 85a665e51a97ac9635e535e2f29a828c9506d176..7ba3ae57856211ff4e8d0d63535affa6ae325d76 100644
--- a/third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js
+++ b/third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js
@@ -60,7 +60,7 @@ WebInspector.PaintProfilerView = function(showImageCallback)
this._scale = this._pendingScale;
this._reset();
-}
+};
/** @enum {symbol} */
WebInspector.PaintProfilerView.Events = {
@@ -288,7 +288,7 @@ WebInspector.PaintProfilerCommandLogView = function()
this.element.appendChild(this._treeOutline.element);
this._log = [];
-}
+};
WebInspector.PaintProfilerCommandLogView.prototype = {
/**
@@ -371,7 +371,7 @@ WebInspector.LogTreeElement = function(ownerView, logItem)
this._logItem = logItem;
this._ownerView = ownerView;
this._filled = false;
-}
+};
WebInspector.LogTreeElement.prototype = {
onattach: function()
@@ -474,7 +474,7 @@ WebInspector.LogPropertyTreeElement.prototype = {
},
__proto__: TreeElement.prototype
-}
+};
/**
* @return {!Object.<string, !WebInspector.PaintProfilerCategory>}
@@ -503,7 +503,7 @@ WebInspector.PaintProfilerCategory = function(name, title, color)
this.name = name;
this.title = title;
this.color = color;
-}
+};
/**
* @return {!Object.<string, !WebInspector.PaintProfilerCategory>}
@@ -555,7 +555,7 @@ WebInspector.PaintProfilerView._initLogItemCategories = function()
WebInspector.PaintProfilerView._logItemCategoriesMap = logItemCategories;
return logItemCategories;
-}
+};
/**
* @param {!Object} logItem
@@ -572,4 +572,4 @@ WebInspector.PaintProfilerView._categoryForLogItem = function(logItem)
logItemCategories[method] = result;
}
return result;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698