blob: e0ceea46a1608ca8f9d8b7193fc51c3ff0020a6b (
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
|
// Copyright (c) 2010 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.
#include "content/browser/ssl/ssl_host_state.h"
#include "base/logging.h"
#include "base/lazy_instance.h"
#include "content/public/browser/browser_context.h"
static const char* kKeyName = "content_ssl_host_state";
SSLHostState* SSLHostState::GetFor(content::BrowserContext* context) {
SSLHostState* rv = static_cast<SSLHostState*>(context->GetUserData(kKeyName));
if (!rv) {
rv = new SSLHostState();
context->SetUserData(kKeyName, rv);
}
return rv;
}
SSLHostState::SSLHostState() {
}
SSLHostState::~SSLHostState() {
}
void SSLHostState::HostRanInsecureContent(const std::string& host, int pid) {
DCHECK(CalledOnValidThread());
ran_insecure_content_hosts_.insert(BrokenHostEntry(host, pid));
}
bool SSLHostState::DidHostRunInsecureContent(const std::string& host,
int pid) const {
DCHECK(CalledOnValidThread());
return !!ran_insecure_content_hosts_.count(BrokenHostEntry(host, pid));
}
void SSLHostState::DenyCertForHost(net::X509Certificate* cert,
const std::string& host) {
DCHECK(CalledOnValidThread());
cert_policy_for_host_[host].Deny(cert);
}
void SSLHostState::AllowCertForHost(net::X509Certificate* cert,
const std::string& host) {
DCHECK(CalledOnValidThread());
cert_policy_for_host_[host].Allow(cert);
}
net::CertPolicy::Judgment SSLHostState::QueryPolicy(
net::X509Certificate* cert, const std::string& host) {
DCHECK(CalledOnValidThread());
return cert_policy_for_host_[host].Check(cert);
}
|