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

Unified Diff: content/renderer/context_menu_params_builder.cc

Issue 71633002: Convert SignedCertificateClass to be ref_counted, and add an SCTStore in which to store them. Add S… Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: few lint fixes Created 7 years, 1 month 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/common/ssl_status.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/context_menu_params_builder.cc
diff --git a/content/renderer/context_menu_params_builder.cc b/content/renderer/context_menu_params_builder.cc
index 0fcc5b24e20ebb26f457a528888fd19f90ec7b53..28a72f33cf85498c1bcb77699544acf841bee00b 100644
--- a/content/renderer/context_menu_params_builder.cc
+++ b/content/renderer/context_menu_params_builder.cc
@@ -76,11 +76,10 @@ ContextMenuParams ContextMenuParamsBuilder::Build(
// Deserialize the SSL info.
if (!data.securityInfo.isEmpty()) {
DeserializeSecurityInfo(data.securityInfo,
- &params.security_info.cert_id,
- &params.security_info.cert_status,
- &params.security_info.security_bits,
- &params.security_info.connection_status,
- &params.security_info.signed_certificate_timestamp_id);
+ &params.security_info.cert_id, &params.security_info.cert_status,
+ &params.security_info.security_bits,
+ &params.security_info.connection_status,
+ &params.security_info.signed_certificate_timestamp_ids);
}
return params;
« no previous file with comments | « content/public/common/ssl_status.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698