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_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_SSL_SSL_MANAGER_H_ |
6 #define CHROME_BROWSER_SSL_SSL_MANAGER_H_ | 6 #define CHROME_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/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
13 #include "base/string16.h" | |
14 #include "chrome/browser/ssl/ssl_policy_backend.h" | 13 #include "chrome/browser/ssl/ssl_policy_backend.h" |
15 #include "chrome/common/notification_observer.h" | 14 #include "chrome/common/notification_observer.h" |
16 #include "chrome/common/notification_registrar.h" | 15 #include "chrome/common/notification_registrar.h" |
17 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
18 #include "net/base/net_errors.h" | 17 #include "net/base/net_errors.h" |
19 | 18 |
20 class LoadFromMemoryCacheDetails; | 19 class LoadFromMemoryCacheDetails; |
21 class NavigationController; | 20 class NavigationController; |
22 class NavigationEntry; | 21 class NavigationEntry; |
23 class ProvisionalLoadDetails; | 22 class ProvisionalLoadDetails; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 int cert_status, | 59 int cert_status, |
61 int security_bits, | 60 int security_bits, |
62 int connection_status); | 61 int connection_status); |
63 static bool DeserializeSecurityInfo(const std::string& state, | 62 static bool DeserializeSecurityInfo(const std::string& state, |
64 int* cert_id, | 63 int* cert_id, |
65 int* cert_status, | 64 int* cert_status, |
66 int* security_bits, | 65 int* security_bits, |
67 int* connection_status); | 66 int* connection_status); |
68 | 67 |
69 // Returns "<organization_name> [<country>]". | 68 // Returns "<organization_name> [<country>]". |
70 static string16 GetEVCertName(const net::X509Certificate& cert); | 69 static std::wstring GetEVCertName(const net::X509Certificate& cert); |
71 | 70 |
72 // Construct an SSLManager for the specified tab. | 71 // Construct an SSLManager for the specified tab. |
73 // If |delegate| is NULL, SSLPolicy::GetDefaultPolicy() is used. | 72 // If |delegate| is NULL, SSLPolicy::GetDefaultPolicy() is used. |
74 explicit SSLManager(NavigationController* controller); | 73 explicit SSLManager(NavigationController* controller); |
75 ~SSLManager(); | 74 ~SSLManager(); |
76 | 75 |
77 SSLPolicy* policy() { return policy_.get(); } | 76 SSLPolicy* policy() { return policy_.get(); } |
78 SSLPolicyBackend* backend() { return &backend_; } | 77 SSLPolicyBackend* backend() { return &backend_; } |
79 | 78 |
80 // The navigation controller associated with this SSLManager. The | 79 // The navigation controller associated with this SSLManager. The |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 // for the security UI of this tab. | 122 // for the security UI of this tab. |
124 NavigationController* controller_; | 123 NavigationController* controller_; |
125 | 124 |
126 // Handles registering notifications with the NotificationService. | 125 // Handles registering notifications with the NotificationService. |
127 NotificationRegistrar registrar_; | 126 NotificationRegistrar registrar_; |
128 | 127 |
129 DISALLOW_COPY_AND_ASSIGN(SSLManager); | 128 DISALLOW_COPY_AND_ASSIGN(SSLManager); |
130 }; | 129 }; |
131 | 130 |
132 #endif // CHROME_BROWSER_SSL_SSL_MANAGER_H_ | 131 #endif // CHROME_BROWSER_SSL_SSL_MANAGER_H_ |
OLD | NEW |