summaryrefslogtreecommitdiffstats
path: root/content/browser/certificate_viewer.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/certificate_viewer.h')
-rw-r--r--content/browser/certificate_viewer.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/content/browser/certificate_viewer.h b/content/browser/certificate_viewer.h
new file mode 100644
index 0000000..8fa8befe
--- /dev/null
+++ b/content/browser/certificate_viewer.h
@@ -0,0 +1,25 @@
+// Copyright (c) 2010 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.
+
+#ifndef CONTENT_BROWSER_CERTIFICATE_VIEWER_H_
+#define CONTENT_BROWSER_CERTIFICATE_VIEWER_H_
+#pragma once
+
+#include "ui/gfx/native_widget_types.h"
+
+namespace net {
+
+class X509Certificate;
+
+} // namespace net
+
+// Opens a certificate viewer under |parent| to display the certificate from
+// the |CertStore| with id |cert_id|.
+void ShowCertificateViewerByID(gfx::NativeWindow parent, int cert_id);
+
+// Opens a certificate viewer under |parent| to display |cert|.
+void ShowCertificateViewer(gfx::NativeWindow parent,
+ net::X509Certificate* cert);
+
+#endif // CONTENT_BROWSER_CERTIFICATE_VIEWER_H_