OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SSL_SSL_HOST_STATE_H_ | 5 #ifndef CONTENT_BROWSER_SSL_SSL_HOST_STATE_H_ |
6 #define CHROME_BROWSER_SSL_SSL_HOST_STATE_H_ | 6 #define CONTENT_BROWSER_SSL_SSL_HOST_STATE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
16 #include "net/base/x509_certificate.h" | 16 #include "net/base/x509_certificate.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 // specified process. Note that insecure content can travel between | 53 // specified process. Note that insecure content can travel between |
54 // same-origin frames in one processs but cannot jump between processes. | 54 // same-origin frames in one processs but cannot jump between processes. |
55 std::set<BrokenHostEntry> ran_insecure_content_hosts_; | 55 std::set<BrokenHostEntry> ran_insecure_content_hosts_; |
56 | 56 |
57 // Certificate policies for each host. | 57 // Certificate policies for each host. |
58 std::map<std::string, net::CertPolicy> cert_policy_for_host_; | 58 std::map<std::string, net::CertPolicy> cert_policy_for_host_; |
59 | 59 |
60 DISALLOW_COPY_AND_ASSIGN(SSLHostState); | 60 DISALLOW_COPY_AND_ASSIGN(SSLHostState); |
61 }; | 61 }; |
62 | 62 |
63 #endif // CHROME_BROWSER_SSL_SSL_HOST_STATE_H_ | 63 #endif // CONTENT_BROWSER_SSL_SSL_HOST_STATE_H_ |
OLD | NEW |