Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5983)

Unified Diff: chrome/browser/resources/settings/certificate_manager_page/certificates_error_dialog.js

Issue 1812673002: MD Settings: Certificate manager, error dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@certificate_decrypt_dialog
Patch Set: Nit Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/certificate_manager_page/certificates_error_dialog.js
diff --git a/chrome/browser/resources/settings/certificate_manager_page/certificates_error_dialog.js b/chrome/browser/resources/settings/certificate_manager_page/certificates_error_dialog.js
new file mode 100644
index 0000000000000000000000000000000000000000..1f9359dcdfe6369e6a6dc1b632daa33609484ba9
--- /dev/null
+++ b/chrome/browser/resources/settings/certificate_manager_page/certificates_error_dialog.js
@@ -0,0 +1,37 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @fileoverview A dialog for showing SSL certificate related error messages.
+ * The user can only close the dialog, there is no other possible interaction.
+ */
+Polymer({
+ is: 'settings-certificates-error-dialog',
+
+ properties: {
+ /** @type {!CertificatesError|!CertificatesImportError} */
+ model: Object,
+ },
+
+ /** @override */
+ attached: function() {
+ this.$.dialog.open();
+ },
+
+ /** @private */
+ onOkTap_: function() {
+ this.$.dialog.close();
+ },
+
+ /**
+ * @param {{certificateName: string, error: string}} importError
+ * @return {string}
+ * @private
+ */
+ getCertificateErrorText_: function(importError) {
+ return loadTimeData.getStringF(
+ 'certificateImportErrorFormat',
+ importError.certificateName, importError.error);
+ },
+});

Powered by Google App Engine
This is Rietveld 408576698