1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_CERTIFICATE_VIEWER_H_
6#define CHROME_BROWSER_CERTIFICATE_VIEWER_H_
7
8#include "ui/gfx/native_widget_types.h"
9
10namespace content {
11class WebContents;
12}
13
14namespace net {
15class X509Certificate;
16}
17
18// Opens a certificate viewer under |parent| to display the certificate from
19// the |CertStore| with id |cert_id|.
20void ShowCertificateViewerByID(content::WebContents* web_contents,
21                               gfx::NativeWindow parent,
22                               int cert_id);
23
24// Opens a certificate viewer under |parent| to display |cert|.
25void ShowCertificateViewer(content::WebContents* web_contents,
26                           gfx::NativeWindow parent,
27                           net::X509Certificate* cert);
28
29#endif  // CHROME_BROWSER_CERTIFICATE_VIEWER_H_
30