| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/security_state/security_state_model.h" | 5 #include "components/security_state/security_state_model.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 fails_malware_check(false), | 265 fails_malware_check(false), |
| 266 sha1_deprecation_status(SecurityStateModel::NO_DEPRECATED_SHA1), | 266 sha1_deprecation_status(SecurityStateModel::NO_DEPRECATED_SHA1), |
| 267 mixed_content_status(SecurityStateModel::CONTENT_STATUS_NONE), | 267 mixed_content_status(SecurityStateModel::CONTENT_STATUS_NONE), |
| 268 content_with_cert_errors_status(SecurityStateModel::CONTENT_STATUS_NONE), | 268 content_with_cert_errors_status(SecurityStateModel::CONTENT_STATUS_NONE), |
| 269 scheme_is_cryptographic(false), | 269 scheme_is_cryptographic(false), |
| 270 cert_status(0), | 270 cert_status(0), |
| 271 security_bits(-1), | 271 security_bits(-1), |
| 272 connection_status(0), | 272 connection_status(0), |
| 273 key_exchange_group(0), | 273 key_exchange_group(0), |
| 274 obsolete_ssl_status(net::OBSOLETE_SSL_NONE), | 274 obsolete_ssl_status(net::OBSOLETE_SSL_NONE), |
| 275 pkp_bypassed(false) {} | 275 pkp_bypassed(false), |
| 276 displayed_private_user_data_input_on_http(false) {} |
| 276 | 277 |
| 277 SecurityStateModel::SecurityInfo::~SecurityInfo() {} | 278 SecurityStateModel::SecurityInfo::~SecurityInfo() {} |
| 278 | 279 |
| 279 SecurityStateModel::SecurityStateModel() {} | 280 SecurityStateModel::SecurityStateModel() {} |
| 280 | 281 |
| 281 SecurityStateModel::~SecurityStateModel() {} | 282 SecurityStateModel::~SecurityStateModel() {} |
| 282 | 283 |
| 283 void SecurityStateModel::GetSecurityInfo( | 284 void SecurityStateModel::GetSecurityInfo( |
| 284 SecurityStateModel::SecurityInfo* result) const { | 285 SecurityStateModel::SecurityInfo* result) const { |
| 285 VisibleSecurityState new_visible_state; | 286 VisibleSecurityState new_visible_state; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 other.displayed_content_with_cert_errors && | 325 other.displayed_content_with_cert_errors && |
| 325 ran_content_with_cert_errors == other.ran_content_with_cert_errors && | 326 ran_content_with_cert_errors == other.ran_content_with_cert_errors && |
| 326 pkp_bypassed == other.pkp_bypassed && | 327 pkp_bypassed == other.pkp_bypassed && |
| 327 displayed_password_field_on_http == | 328 displayed_password_field_on_http == |
| 328 other.displayed_password_field_on_http && | 329 other.displayed_password_field_on_http && |
| 329 displayed_credit_card_field_on_http == | 330 displayed_credit_card_field_on_http == |
| 330 other.displayed_credit_card_field_on_http); | 331 other.displayed_credit_card_field_on_http); |
| 331 } | 332 } |
| 332 | 333 |
| 333 } // namespace security_state | 334 } // namespace security_state |
| OLD | NEW |