| Index: third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js b/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js
|
| index 3cb635a8f8fb91b9af8da46b94fd4e3ee1a64787..ae7424c2a3944e9a64f5abbf46e1cb5c3a720587 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerTreeOutline.js
|
| @@ -49,7 +49,7 @@ WebInspector.LayerTreeOutline = function(layerViewHost)
|
| this._lastHoveredNode = null;
|
| this.element = this._treeOutline.element;
|
| this._layerViewHost.showInternalLayersSetting().addChangeListener(this._update, this);
|
| -}
|
| +};
|
|
|
| WebInspector.LayerTreeOutline.prototype = {
|
| focus: function()
|
| @@ -211,7 +211,7 @@ WebInspector.LayerTreeOutline.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -226,7 +226,7 @@ WebInspector.LayerTreeElement = function(tree, layer)
|
| this._layer = layer;
|
| this._layer[WebInspector.LayerTreeElement._symbol] = this;
|
| this._update();
|
| -}
|
| +};
|
|
|
| WebInspector.LayerTreeElement._symbol = Symbol("layer");
|
|
|
| @@ -260,4 +260,4 @@ WebInspector.LayerTreeElement.prototype = {
|
| },
|
|
|
| __proto__: TreeElement.prototype
|
| -}
|
| +};
|
|
|