| Index: third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js b/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
|
| index 7e2558b435b95f367bcffa81f5a375a465f50a1c..b78a30a72d1d9ba3ac1841e49f141e74d62f93ff 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
|
| @@ -159,7 +159,7 @@ Audits2.Audits2Panel = class extends UI.PanelWithSidebar {
|
| 'click', () => InspectorFrontendHost.openInNewTab('https://developers.google.com/web/tools/lighthouse/'));
|
|
|
| var newButton = UI.createTextButton(
|
| - Common.UIString('Perform an audit\u2026'), this._showLauncherUI.bind(this), 'material-button default');
|
| + Common.UIString('Perform an audit\u2026'), this._showLauncherUI.bind(this), '', true /* primary */);
|
| landingCenter.appendChild(newButton);
|
| this.setDefaultFocusedElement(newButton);
|
| }
|
| @@ -190,10 +190,10 @@ Audits2.Audits2Panel = class extends UI.PanelWithSidebar {
|
|
|
| var buttonsRow = uiElement.createChild('div', 'audits2-dialog-buttons hbox');
|
| this._startButton =
|
| - UI.createTextButton(Common.UIString('Run audit'), this._start.bind(this), 'material-button default');
|
| + UI.createTextButton(Common.UIString('Run audit'), this._start.bind(this), '', true /* primary */);
|
| this._updateStartButtonEnabled();
|
| buttonsRow.appendChild(this._startButton);
|
| - this._cancelButton = UI.createTextButton(Common.UIString('Cancel'), this._cancel.bind(this), 'material-button');
|
| + this._cancelButton = UI.createTextButton(Common.UIString('Cancel'), this._cancel.bind(this));
|
| buttonsRow.appendChild(this._cancelButton);
|
|
|
| this._dialog.setSizeBehavior(UI.GlassPane.SizeBehavior.SetExactWidthMaxHeight);
|
|
|