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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/LayerTreeBase.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/sdk/LayerTreeBase.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/LayerTreeBase.js b/third_party/WebKit/Source/devtools/front_end/sdk/LayerTreeBase.js
index 090c8e2363e06ffaaa6491ed70c4384ea7122b9f..b8b1a36c9ecdfadb853032bbc2f6167982d38837 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/LayerTreeBase.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/LayerTreeBase.js
@@ -7,7 +7,7 @@
*/
WebInspector.Layer = function()
{
-}
+};
WebInspector.Layer.prototype = {
/**
@@ -119,14 +119,14 @@ WebInspector.Layer.prototype = {
* @return {boolean}
*/
drawsContent: function() { }
-}
+};
WebInspector.Layer.ScrollRectType = {
NonFastScrollable: "NonFastScrollable",
TouchEventHandler: "TouchEventHandler",
WheelEventHandler: "WheelEventHandler",
RepaintsOnScroll: "RepaintsOnScroll"
-}
+};
/**
* @constructor
@@ -141,7 +141,7 @@ WebInspector.LayerTreeBase = function(target)
this._contentRoot = null;
/** @type Map<number, ?WebInspector.DOMNode> */
this._backendNodeIdToNode = new Map();
-}
+};
WebInspector.LayerTreeBase.prototype = {
/**
@@ -261,4 +261,4 @@ WebInspector.LayerTreeBase.prototype = {
{
return this._domModel ? this._domModel.nodeForId(id) : null;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698