Index: chrome/browser/page_info_model.cc |
diff --git a/chrome/browser/page_info_model.cc b/chrome/browser/page_info_model.cc |
index da20fa285ed61c9dca55704adfb83a8d170abe30..7f904c0e860bbf1bdca449ed021832e07a344a1a 100644 |
--- a/chrome/browser/page_info_model.cc |
+++ b/chrome/browser/page_info_model.cc |
@@ -22,7 +22,7 @@ |
namespace { |
// Returns a name that can be used to represent the issuer. It tries in this |
// order CN, O and OU and returns the first non-empty one found. |
- std::string GetIssuerName(const net::X509Certificate::Principal& issuer) { |
+ std::string GetIssuerName(const net::CertPrincipal& issuer) { |
if (!issuer.common_name.empty()) |
return issuer.common_name; |
if (!issuer.organization_names.empty()) |