// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_ #define CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_ #include <stdint.h> #include "content/common/content_export.h" #include "net/cert/cert_status_flags.h" #include "net/cert/ct_policy_status.h" #include "net/cert/sct_status_flags.h" #include "net/cert/x509_certificate.h" namespace net { class SSLInfo; } namespace content { // Collects the SSL information for this NavigationEntry. struct CONTENT_EXPORT SSLStatus { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_