| Index: chrome/browser/resources/settings/certificate_manager_page/ca_trust_edit_dialog.js
|
| diff --git a/chrome/browser/resources/settings/certificate_manager_page/ca_trust_edit_dialog.js b/chrome/browser/resources/settings/certificate_manager_page/ca_trust_edit_dialog.js
|
| index 08de7fa22f40107586c5e7665192649b8cabac23..3045cc6f3cbb66f1793c1bff98cc22887fea374a 100644
|
| --- a/chrome/browser/resources/settings/certificate_manager_page/ca_trust_edit_dialog.js
|
| +++ b/chrome/browser/resources/settings/certificate_manager_page/ca_trust_edit_dialog.js
|
| @@ -43,10 +43,10 @@ Polymer({
|
| /** @param {!CaTrustInfo} trustInfo */
|
| function(trustInfo) {
|
| this.trustInfo_ = trustInfo;
|
| - this.$.dialog.open();
|
| + this.$.dialog.showModal();
|
| }.bind(this));
|
| } else {
|
| - /** @type {!CrDialogElement} */ (this.$.dialog).open();
|
| + /** @type {!CrDialogElement} */ (this.$.dialog).showModal();
|
| }
|
| },
|
|
|
|
|