| Index: third_party/WebKit/Source/devtools/front_end/layers/LayersPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/layers/LayersPanel.js b/third_party/WebKit/Source/devtools/front_end/layers/LayersPanel.js
|
| index 7a7c44c0874a544e58b081a72008fc051bbc7ac0..dfad15abeb1944e2afad280b6f7965756207a799 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/layers/LayersPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/layers/LayersPanel.js
|
| @@ -63,7 +63,7 @@ WebInspector.LayersPanel = function()
|
| this._paintProfilerView = new WebInspector.LayerPaintProfilerView(this._layers3DView.showImageForLayer.bind(this._layers3DView));
|
| this._tabbedPane.appendTab(WebInspector.LayersPanel.DetailsViewTabs.Profiler, WebInspector.UIString("Profiler"), this._paintProfilerView);
|
| this._updateThrottler = new WebInspector.Throttler(100);
|
| -}
|
| +};
|
|
|
| WebInspector.LayersPanel.DetailsViewTabs = {
|
| Details: "details",
|
| @@ -167,4 +167,4 @@ WebInspector.LayersPanel.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.PanelWithSidebar.prototype
|
| -}
|
| +};
|
|
|