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

Unified Diff: content/public/browser/security_style_explanation.h

Issue 2327433002: Stop using CertStore which is not compatible with PlzNavigate. (Closed)
Patch Set: remove cert_store on ios Created 4 years, 3 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
« no previous file with comments | « content/public/browser/resource_request_details.cc ('k') | content/public/browser/web_contents_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/security_style_explanation.h
diff --git a/content/public/browser/security_style_explanation.h b/content/public/browser/security_style_explanation.h
index 1b8215e3cfc69a5542c982e0877205e7619277f0..18db638ce2ad115267fc5466b91db141cf7d23ad 100644
--- a/content/public/browser/security_style_explanation.h
+++ b/content/public/browser/security_style_explanation.h
@@ -20,16 +20,17 @@ struct SecurityStyleExplanation {
CONTENT_EXPORT SecurityStyleExplanation(){};
CONTENT_EXPORT SecurityStyleExplanation(const std::string& summary,
const std::string& description)
- : summary(summary), description(description), cert_id(0) {}
+ : summary(summary), description(description), has_certificate(false) {}
CONTENT_EXPORT SecurityStyleExplanation(const std::string& summary,
const std::string& description,
- int cert_id)
- : summary(summary), description(description), cert_id(cert_id) {}
+ bool has_certificate)
+ : summary(summary), description(description),
+ has_certificate(has_certificate) {}
CONTENT_EXPORT ~SecurityStyleExplanation() {}
std::string summary;
std::string description;
- int cert_id;
+ bool has_certificate;
};
} // namespace content
« no previous file with comments | « content/public/browser/resource_request_details.cc ('k') | content/public/browser/web_contents_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698