blob: 61830dcd28fdd70262988207d637a6637ce27543 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SSL_CERTIFICATE_ERROR_REPORT_H_
#define CHROME_BROWSER_SSL_CERTIFICATE_ERROR_REPORT_H_
#include <string>
#include "base/memory/scoped_ptr.h"
namespace net {
class SSLInfo;
} // namespace net
class CertLoggerRequest;
// This class builds and serializes reports for invalid SSL certificate
// chains, intended to be sent with
// chrome_browser_net::CertificateErrorReporter.
class CertificateErrorReport {
public:
// Describes the type of interstitial that the user was shown for the
// error that this report represents. Gets mapped to
// |CertLoggerInterstitialInfo::InterstitialReason|.
enum InterstitialReason {
INTERSTITIAL_SSL,
INTERSTITIAL_CAPTIVE_PORTAL,
INTERSTITIAL_CLOCK
};
// Whether the user clicked through the interstitial or not.
enum ProceedDecision { USER_PROCEEDED, USER_DID_NOT_PROCEED };
// Whether the user was shown an option to click through the
// interstitial.
enum Overridable { INTERSTITIAL_OVERRIDABLE, INTERSTITIAL_NOT_OVERRIDABLE };
// Constructs an empty report.
CertificateErrorReport();
// Constructs a report for the given |hostname| using the SSL
// properties in |ssl_info|.
CertificateErrorReport(const std::string& hostname,
const net::SSLInfo& ssl_info);
~CertificateErrorReport();
// Initializes an empty report by parsing the given serialized
// report. |serialized_report| should be a serialized
// CertLoggerRequest protobuf. Returns true if the report could be
// successfully parsed and false otherwise.
bool InitializeFromString(const std::string& serialized_report);
// Serializes the report. The output will be a serialized
// CertLoggerRequest protobuf. Returns true if the serialization was
// successful and false otherwise.
bool Serialize(std::string* output) const;
void SetInterstitialInfo(const InterstitialReason& interstitial_reason,
const ProceedDecision& proceed_decision,
const Overridable& overridable);
// Gets the hostname to which this report corresponds.
const std::string& hostname() const;
private:
scoped_ptr<CertLoggerRequest> cert_report_;
};
#endif // CHROME_BROWSER_SSL_CERTIFICATE_ERROR_REPORT_H_
|