| Index: content/child/web_url_loader_impl.cc
|
| diff --git a/content/child/web_url_loader_impl.cc b/content/child/web_url_loader_impl.cc
|
| index 53ce2f5e90d1f4e1da4a0ddab5b99f14029a1031..ed7219f8ab284d586fd49808ea523d16f6f3e84c 100644
|
| --- a/content/child/web_url_loader_impl.cc
|
| +++ b/content/child/web_url_loader_impl.cc
|
| @@ -38,7 +38,6 @@
|
| #include "content/public/child/fixed_received_data.h"
|
| #include "content/public/child/request_peer.h"
|
| #include "content/public/common/browser_side_navigation_policy.h"
|
| -#include "content/public/common/signed_certificate_timestamp_id_and_status.h"
|
| #include "content/public/common/ssl_status.h"
|
| #include "net/base/data_url.h"
|
| #include "net/base/filename_util.h"
|
| @@ -256,32 +255,9 @@ void SetSecurityStyleAndDetails(const GURL& url,
|
|
|
| response->setSecurityStyle(securityStyle);
|
|
|
| - SignedCertificateTimestampIDStatusList sct_list =
|
| - ssl_status.signed_certificate_timestamp_ids;
|
| -
|
| - size_t num_unknown_scts = 0;
|
| - size_t num_invalid_scts = 0;
|
| - size_t num_valid_scts = 0;
|
| -
|
| - SignedCertificateTimestampIDStatusList::iterator iter;
|
| - for (iter = sct_list.begin(); iter < sct_list.end(); ++iter) {
|
| - switch (iter->status) {
|
| - case net::ct::SCT_STATUS_LOG_UNKNOWN:
|
| - num_unknown_scts++;
|
| - break;
|
| - case net::ct::SCT_STATUS_INVALID:
|
| - num_invalid_scts++;
|
| - break;
|
| - case net::ct::SCT_STATUS_OK:
|
| - num_valid_scts++;
|
| - break;
|
| - case net::ct::SCT_STATUS_NONE:
|
| - case net::ct::SCT_STATUS_MAX:
|
| - // These enum values do not represent SCTs that are taken into account
|
| - // for CT compliance calculations, so we ignore them.
|
| - break;
|
| - }
|
| - }
|
| + size_t num_unknown_scts = ssl_status.num_unknown_scts;
|
| + size_t num_invalid_scts = ssl_status.num_invalid_scts;
|
| + size_t num_valid_scts = ssl_status.num_valid_scts;
|
|
|
| blink::WebURLResponse::WebSecurityDetails webSecurityDetails(
|
| WebString::fromUTF8(protocol), WebString::fromUTF8(key_exchange),
|
|
|