Index: chrome/browser/ui/webui/certificate_viewer_ui.h |
diff --git a/chrome/browser/ui/webui/certificate_viewer_ui.h b/chrome/browser/ui/webui/certificate_viewer_ui.h |
index 926b6202246d217609fe258ff13a08e5774c2fa9..1133d135bf98a1e7b418728d7007ed6bc1e2ca77 100644 |
--- a/chrome/browser/ui/webui/certificate_viewer_ui.h |
+++ b/chrome/browser/ui/webui/certificate_viewer_ui.h |
@@ -6,9 +6,7 @@ |
#define CHROME_BROWSER_UI_WEBUI_CERTIFICATE_VIEWER_UI_H_ |
#pragma once |
-#include "base/values.h" |
#include "chrome/browser/ui/webui/html_dialog_ui.h" |
-#include "net/base/x509_certificate.h" |
// The WebUI for chrome://view-cert |
class CertificateViewerUI : public HtmlDialogUI { |
@@ -16,18 +14,6 @@ class CertificateViewerUI : public HtmlDialogUI { |
explicit CertificateViewerUI(TabContents* contents); |
virtual ~CertificateViewerUI(); |
- protected: |
- // Extracts the certificate details and returns them to the javascript |
- // function getCertificateInfo in a dictionary structure. |
- // |
- // The input is an X509Certificate pointer in hex encoded format in the first |
- // argument of the args list. |
- void RequestCertificateInfo(const ListValue* args); |
- |
- // Get the details for a specific certificate in the certificate chain. The |
- // fields are returned as a tree structure with values for certain nodes. |
- ListValue* GetCertificateFields(net::X509Certificate::OSCertHandle cert); |
- |
DISALLOW_COPY_AND_ASSIGN(CertificateViewerUI); |
}; |