| 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;
|
| }
|
| -}
|
| +};
|
|
|