| Index: third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js b/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| index 7ab55da07e40fa6120e6f4eb5995f03ecdf7a794..2312000f638998c4aaa5c99b21b6282f7bffc63e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| @@ -18,7 +18,8 @@ Emulation.DevicesSettingsTab = class extends UI.VBox {
|
| .createChild('div', 'settings-tab help-content help-container');
|
|
|
| var buttonsRow = this.containerElement.createChild('div', 'devices-button-row');
|
| - this._addCustomButton = createTextButton(Common.UIString('Add custom device...'), this._addCustomDevice.bind(this));
|
| + this._addCustomButton =
|
| + UI.createTextButton(Common.UIString('Add custom device...'), this._addCustomDevice.bind(this));
|
| buttonsRow.appendChild(this._addCustomButton);
|
|
|
| this._list = new UI.ListWidget(this);
|
|
|