Index: third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js b/third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js |
index 91431406d591904f2f8bee069d4f0185e5e035b3..4ebe4da59c6eb6891621ca6f468a82ac9a678bfb 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js |
+++ b/third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js |
@@ -39,13 +39,13 @@ WebInspector.LayerTreeModel = function(target) |
WebInspector.targetManager.addEventListener(WebInspector.TargetManager.Events.MainFrameNavigated, this._onMainFrameNavigated, this); |
/** @type {?WebInspector.LayerTreeBase} */ |
this._layerTree = null; |
-} |
+}; |
/** @enum {symbol} */ |
WebInspector.LayerTreeModel.Events = { |
LayerTreeChanged: Symbol("LayerTreeChanged"), |
LayerPainted: Symbol("LayerPainted"), |
-} |
+}; |
WebInspector.LayerTreeModel.prototype = { |
disable: function() |
@@ -133,7 +133,7 @@ WebInspector.LayerTreeModel.prototype = { |
}, |
__proto__: WebInspector.SDKModel.prototype |
-} |
+}; |
/** |
* @constructor |
@@ -143,7 +143,7 @@ WebInspector.LayerTreeModel.prototype = { |
WebInspector.AgentLayerTree = function(target) |
{ |
WebInspector.LayerTreeBase.call(this, target); |
-} |
+}; |
WebInspector.AgentLayerTree.prototype = { |
/** |
@@ -221,7 +221,7 @@ WebInspector.AgentLayerTree.prototype = { |
}, |
__proto__: WebInspector.LayerTreeBase.prototype |
-} |
+}; |
/** |
* @constructor |
@@ -233,7 +233,7 @@ WebInspector.AgentLayer = function(target, layerPayload) |
{ |
this._target = target; |
this._reset(layerPayload); |
-} |
+}; |
WebInspector.AgentLayer.prototype = { |
/** |
@@ -563,7 +563,7 @@ WebInspector.AgentLayer.prototype = { |
this._children.forEach(calculateQuadForLayer); |
} |
-} |
+}; |
/** |
* @constructor |
@@ -573,7 +573,7 @@ WebInspector.AgentLayer.prototype = { |
WebInspector.LayerTreeDispatcher = function(layerTreeModel) |
{ |
this._layerTreeModel = layerTreeModel; |
-} |
+}; |
WebInspector.LayerTreeDispatcher.prototype = { |
/** |
@@ -594,7 +594,7 @@ WebInspector.LayerTreeDispatcher.prototype = { |
{ |
this._layerTreeModel._layerPainted(layerId, clipRect); |
} |
-} |
+}; |
/** |
* @param {!WebInspector.Target} target |
@@ -609,4 +609,4 @@ WebInspector.LayerTreeModel.fromTarget = function(target) |
if (!model) |
model = new WebInspector.LayerTreeModel(target); |
return model; |
-} |
+}; |