// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/security_interstitials/core/ssl_error_options_mask.h" #include "base/notreached.h" #include "net/base/net_errors.h" namespace security_interstitials { namespace { int IsCertErrorFatal(int cert_error) { … } } // namespace int CalculateSSLErrorOptionsMask(int cert_error, bool hard_override_disabled, bool should_ssl_errors_be_fatal) { … } } // namespace security_interstitials