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