// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SSL_ERRORS_ERROR_INFO_H_ #define COMPONENTS_SSL_ERRORS_ERROR_INFO_H_ #include <string> #include <vector> #include "net/cert/cert_status_flags.h" #include "net/cert/x509_certificate.h" class GURL; namespace ssl_errors { // This class describes an error that happened while showing a page over SSL. // An ErrorInfo object only exists on the UI thread and only contains // information about an error (type of error and text details). // Note no DISALLOW_COPY_AND_ASSIGN as we want the copy constructor. class ErrorInfo { … }; } // namespace ssl_errors #endif // COMPONENTS_SSL_ERRORS_ERROR_INFO_H_