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/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "content/common/notification_observer.h" | 15 #include "content/common/notification_observer.h" |
16 #include "content/common/notification_registrar.h" | 16 #include "content/common/notification_registrar.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 #include "net/base/cert_status_flags.h" | |
19 #include "net/base/net_errors.h" | 18 #include "net/base/net_errors.h" |
20 | 19 |
21 class LoadFromMemoryCacheDetails; | 20 class LoadFromMemoryCacheDetails; |
22 class NavigationController; | 21 class NavigationController; |
23 class NavigationEntry; | 22 class NavigationEntry; |
24 class ProvisionalLoadDetails; | 23 class ProvisionalLoadDetails; |
25 class ResourceDispatcherHost; | 24 class ResourceDispatcherHost; |
26 class ResourceRedirectDetails; | 25 class ResourceRedirectDetails; |
27 class ResourceRequestDetails; | 26 class ResourceRequestDetails; |
28 class SSLPolicy; | 27 class SSLPolicy; |
(...skipping 22 matching lines...) Expand all Loading... |
51 net::URLRequest* request, | 50 net::URLRequest* request, |
52 int cert_error, | 51 int cert_error, |
53 net::X509Certificate* cert); | 52 net::X509Certificate* cert); |
54 | 53 |
55 // 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 |
56 // SSL_INTERNAL_STATE_CHANGED notification. | 55 // SSL_INTERNAL_STATE_CHANGED notification. |
57 static void NotifySSLInternalStateChanged(NavigationController* controller); | 56 static void NotifySSLInternalStateChanged(NavigationController* controller); |
58 | 57 |
59 // Convenience methods for serializing/deserializing the security info. | 58 // Convenience methods for serializing/deserializing the security info. |
60 static std::string SerializeSecurityInfo(int cert_id, | 59 static std::string SerializeSecurityInfo(int cert_id, |
61 net::CertStatus cert_status, | 60 int cert_status, |
62 int security_bits, | 61 int security_bits, |
63 int connection_status); | 62 int connection_status); |
64 CONTENT_EXPORT static bool DeserializeSecurityInfo( | 63 CONTENT_EXPORT static bool DeserializeSecurityInfo(const std::string& state, |
65 const std::string& state, | 64 int* cert_id, |
66 int* cert_id, | 65 int* cert_status, |
67 net::CertStatus* cert_status, | 66 int* security_bits, |
68 int* security_bits, | 67 int* connection_status); |
69 int* connection_status); | |
70 | 68 |
71 // Construct an SSLManager for the specified tab. | 69 // Construct an SSLManager for the specified tab. |
72 // If |delegate| is NULL, SSLPolicy::GetDefaultPolicy() is used. | 70 // If |delegate| is NULL, SSLPolicy::GetDefaultPolicy() is used. |
73 explicit SSLManager(NavigationController* controller); | 71 explicit SSLManager(NavigationController* controller); |
74 virtual ~SSLManager(); | 72 virtual ~SSLManager(); |
75 | 73 |
76 SSLPolicy* policy() { return policy_.get(); } | 74 SSLPolicy* policy() { return policy_.get(); } |
77 SSLPolicyBackend* backend() { return &backend_; } | 75 SSLPolicyBackend* backend() { return &backend_; } |
78 | 76 |
79 // The navigation controller associated with this SSLManager. The | 77 // The navigation controller associated with this SSLManager. The |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 // for the security UI of this tab. | 120 // for the security UI of this tab. |
123 NavigationController* controller_; | 121 NavigationController* controller_; |
124 | 122 |
125 // Handles registering notifications with the NotificationService. | 123 // Handles registering notifications with the NotificationService. |
126 NotificationRegistrar registrar_; | 124 NotificationRegistrar registrar_; |
127 | 125 |
128 DISALLOW_COPY_AND_ASSIGN(SSLManager); | 126 DISALLOW_COPY_AND_ASSIGN(SSLManager); |
129 }; | 127 }; |
130 | 128 |
131 #endif // CONTENT_BROWSER_SSL_SSL_MANAGER_H_ | 129 #endif // CONTENT_BROWSER_SSL_SSL_MANAGER_H_ |
OLD | NEW |