| Index: third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js
|
| index 0344456408d0d9839169620a99abc31244effeb9..6844eaf2d8a0520bbb46dd6c083e64063eb2a5a1 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js
|
| @@ -5,8 +5,11 @@
|
| * @unrestricted
|
| */
|
| Elements.ElementsSidebarPane = class extends UI.VBox {
|
| - constructor() {
|
| - super();
|
| + /**
|
| + * @param {boolean=} isWebComponent
|
| + */
|
| + constructor(isWebComponent) {
|
| + super(isWebComponent);
|
| this.element.classList.add('flex-none');
|
| this._computedStyleModel = new Elements.ComputedStyleModel();
|
| this._computedStyleModel.addEventListener(
|
|
|