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

Unified Diff: third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerDetailsView.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/LayerDetailsView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerDetailsView.js b/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerDetailsView.js
index 5a574d43ce1e6ddf17d82daf72c5c781a7db91b7..b2779661f85cf68d390fcff5d4521727c6a2a62c 100644
--- a/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerDetailsView.js
+++ b/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerDetailsView.js
@@ -42,7 +42,7 @@ WebInspector.LayerDetailsView = function(layerViewHost)
this._layerViewHost.registerView(this);
this._emptyWidget = new WebInspector.EmptyWidget(WebInspector.UIString("Select a layer to see its details"));
this._buildContent();
-}
+};
/**
* @enum {string}
@@ -50,7 +50,7 @@ WebInspector.LayerDetailsView = function(layerViewHost)
/** @enum {symbol} */
WebInspector.LayerDetailsView.Events = {
PaintProfilerRequested: Symbol("PaintProfilerRequested")
-}
+};
/**
* @type {!Object.<string, string>}
@@ -229,4 +229,4 @@ WebInspector.LayerDetailsView.prototype = {
},
__proto__: WebInspector.Widget.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698