Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 virtual ~SSLManager(); | 76 virtual ~SSLManager(); |
| 77 | 77 |
| 78 SSLPolicy* policy() { return policy_.get(); } | 78 SSLPolicy* policy() { return policy_.get(); } |
| 79 SSLPolicyBackend* backend() { return &backend_; } | 79 SSLPolicyBackend* backend() { return &backend_; } |
| 80 | 80 |
| 81 // The navigation controller associated with this SSLManager. The | 81 // The navigation controller associated with this SSLManager. The |
| 82 // NavigationController is guaranteed to outlive the SSLManager. | 82 // NavigationController is guaranteed to outlive the SSLManager. |
| 83 NavigationControllerImpl* controller() { return controller_; } | 83 NavigationControllerImpl* controller() { return controller_; } |
| 84 | 84 |
| 85 void DidCommitProvisionalLoad(const LoadCommittedDetails& details); | 85 void DidCommitProvisionalLoad(const LoadCommittedDetails& details); |
| 86 void DidLoadFromMemoryCache(const LoadFromMemoryCacheDetails& details); | |
|
jww
2016/08/09 02:42:18
nit: Should also delete "struct LoadFromMemoryCach
felt
2016/08/10 14:17:18
Done.
| |
| 87 void DidStartResourceResponse(const ResourceRequestDetails& details); | 86 void DidStartResourceResponse(const ResourceRequestDetails& details); |
| 88 void DidReceiveResourceRedirect(const ResourceRedirectDetails& details); | 87 void DidReceiveResourceRedirect(const ResourceRedirectDetails& details); |
| 89 | 88 |
| 90 // Insecure content entry point. | 89 // Insecure content entry point. |
| 91 void DidRunInsecureContent(const GURL& security_origin); | 90 void DidRunInsecureContent(const GURL& security_origin); |
| 92 | 91 |
| 93 private: | 92 private: |
| 94 // Updates the NavigationEntry with our current state. This will | 93 // Updates the NavigationEntry with our current state. This will |
| 95 // notify the WebContents of an SSL state change if a change was | 94 // notify the WebContents of an SSL state change if a change was |
| 96 // actually made. | 95 // actually made. |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 108 // The NavigationController that owns this SSLManager. We are responsible | 107 // The NavigationController that owns this SSLManager. We are responsible |
| 109 // for the security UI of this tab. | 108 // for the security UI of this tab. |
| 110 NavigationControllerImpl* controller_; | 109 NavigationControllerImpl* controller_; |
| 111 | 110 |
| 112 DISALLOW_COPY_AND_ASSIGN(SSLManager); | 111 DISALLOW_COPY_AND_ASSIGN(SSLManager); |
| 113 }; | 112 }; |
| 114 | 113 |
| 115 } // namespace content | 114 } // namespace content |
| 116 | 115 |
| 117 #endif // CONTENT_BROWSER_SSL_SSL_MANAGER_H_ | 116 #endif // CONTENT_BROWSER_SSL_SSL_MANAGER_H_ |
| OLD | NEW |