summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ssl/ssl_host_state.cc
blob: 5bee7d9bcf81bd7507f7f7c154933baa4effc796 (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
// Copyright (c) 2006-2009 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 "chrome/browser/ssl/ssl_host_state.h"

SSLHostState::SSLHostState() {
}

SSLHostState::~SSLHostState() {
}

void SSLHostState::DenyCertForHost(net::X509Certificate* cert,
                                   const std::string& host) {
  DCHECK(CalledOnValidThread());

  // Remember that we don't like this cert for this host.
  cert_policy_for_host_[host].Deny(cert);
}

void SSLHostState::AllowCertForHost(net::X509Certificate* cert,
                                    const std::string& host) {
  DCHECK(CalledOnValidThread());

  // Remember that we do like this cert for this host.
  cert_policy_for_host_[host].Allow(cert);
}

net::X509Certificate::Policy::Judgment SSLHostState::QueryPolicy(
    net::X509Certificate* cert, const std::string& host) {
  DCHECK(CalledOnValidThread());

  return cert_policy_for_host_[host].Check(cert);
}

bool SSLHostState::CanShowInsecureContent(const GURL& url) {
  DCHECK(CalledOnValidThread());

  return (can_show_insecure_content_for_host_.find(url.host()) !=
      can_show_insecure_content_for_host_.end());
}

void SSLHostState::AllowShowInsecureContentForURL(const GURL& url) {
  DCHECK(CalledOnValidThread());

  can_show_insecure_content_for_host_.insert(url.host());
}