OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CONTENT_BROWSER_SSL_SSL_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_SSL_SSL_MANAGER_H_ |
6 #define CONTENT_BROWSER_SSL_SSL_MANAGER_H_ | 6 #define CONTENT_BROWSER_SSL_SSL_MANAGER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "content/browser/ssl/ssl_policy_backend.h" | 13 #include "content/browser/ssl/ssl_policy_backend.h" |
14 #include "content/common/notification_observer.h" | 14 #include "content/common/notification_observer.h" |
15 #include "content/common/notification_registrar.h" | 15 #include "content/common/notification_registrar.h" |
16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
| 17 #include "net/base/cert_status_flags.h" |
17 #include "net/base/net_errors.h" | 18 #include "net/base/net_errors.h" |
18 | 19 |
19 class LoadFromMemoryCacheDetails; | 20 class LoadFromMemoryCacheDetails; |
20 class NavigationController; | 21 class NavigationController; |
21 class NavigationEntry; | 22 class NavigationEntry; |
22 class ProvisionalLoadDetails; | 23 class ProvisionalLoadDetails; |
23 class ResourceDispatcherHost; | 24 class ResourceDispatcherHost; |
24 class ResourceRedirectDetails; | 25 class ResourceRedirectDetails; |
25 class ResourceRequestDetails; | 26 class ResourceRequestDetails; |
26 class SSLPolicy; | 27 class SSLPolicy; |
(...skipping 22 matching lines...) Expand all Loading... |
49 net::URLRequest* request, | 50 net::URLRequest* request, |
50 int cert_error, | 51 int cert_error, |
51 net::X509Certificate* cert); | 52 net::X509Certificate* cert); |
52 | 53 |
53 // Called when SSL state for a host or tab changes. Broadcasts the | 54 // Called when SSL state for a host or tab changes. Broadcasts the |
54 // SSL_INTERNAL_STATE_CHANGED notification. | 55 // SSL_INTERNAL_STATE_CHANGED notification. |
55 static void NotifySSLInternalStateChanged(NavigationController* controller); | 56 static void NotifySSLInternalStateChanged(NavigationController* controller); |
56 | 57 |
57 // Convenience methods for serializing/deserializing the security info. | 58 // Convenience methods for serializing/deserializing the security info. |
58 static std::string SerializeSecurityInfo(int cert_id, | 59 static std::string SerializeSecurityInfo(int cert_id, |
59 int cert_status, | 60 net::CertStatus cert_status, |
60 int security_bits, | 61 int security_bits, |
61 int connection_status); | 62 int connection_status); |
62 static bool DeserializeSecurityInfo(const std::string& state, | 63 static bool DeserializeSecurityInfo(const std::string& state, |
63 int* cert_id, | 64 int* cert_id, |
64 int* cert_status, | 65 net::CertStatus* cert_status, |
65 int* security_bits, | 66 int* security_bits, |
66 int* connection_status); | 67 int* connection_status); |
67 | 68 |
68 // Construct an SSLManager for the specified tab. | 69 // Construct an SSLManager for the specified tab. |
69 // If |delegate| is NULL, SSLPolicy::GetDefaultPolicy() is used. | 70 // If |delegate| is NULL, SSLPolicy::GetDefaultPolicy() is used. |
70 explicit SSLManager(NavigationController* controller); | 71 explicit SSLManager(NavigationController* controller); |
71 virtual ~SSLManager(); | 72 virtual ~SSLManager(); |
72 | 73 |
73 SSLPolicy* policy() { return policy_.get(); } | 74 SSLPolicy* policy() { return policy_.get(); } |
74 SSLPolicyBackend* backend() { return &backend_; } | 75 SSLPolicyBackend* backend() { return &backend_; } |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 // for the security UI of this tab. | 120 // for the security UI of this tab. |
120 NavigationController* controller_; | 121 NavigationController* controller_; |
121 | 122 |
122 // Handles registering notifications with the NotificationService. | 123 // Handles registering notifications with the NotificationService. |
123 NotificationRegistrar registrar_; | 124 NotificationRegistrar registrar_; |
124 | 125 |
125 DISALLOW_COPY_AND_ASSIGN(SSLManager); | 126 DISALLOW_COPY_AND_ASSIGN(SSLManager); |
126 }; | 127 }; |
127 | 128 |
128 #endif // CONTENT_BROWSER_SSL_SSL_MANAGER_H_ | 129 #endif // CONTENT_BROWSER_SSL_SSL_MANAGER_H_ |
OLD | NEW |