| Index: third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js b/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
|
| index 2d1aa0624a7ea8135cf519e9669950621d5b1cb5..d96d1c66e543bdeb8cd738f0a64ae7a0299c4f2d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
|
| @@ -308,6 +308,16 @@ UI.ListWidget.Editor = class {
|
| }
|
|
|
| /**
|
| + * @param {boolean} material
|
| + */
|
| + setMaterial(material) {
|
| + this._commitButton.classList.toggle('material-button', material);
|
| + this._commitButton.classList.toggle('default', material);
|
| + this._cancelButton.classList.toggle('material-button', material);
|
| + this.element.classList.toggle('material', material);
|
| + }
|
| +
|
| + /**
|
| * @param {string} name
|
| * @param {string} type
|
| * @param {string} title
|
|
|