diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-23 19:12:21 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-23 19:12:21 +0000 |
commit | 8ff00d7d7139ae48a60f45ac9c984b433f1cccf6 (patch) | |
tree | a542b82d9ae8f1ed006b600d6eb1e82def999908 /content/browser/ssl/ssl_manager.h | |
parent | cffd752d47534abef7d6a037cf9d4f27007e6427 (diff) | |
download | chromium_src-8ff00d7d7139ae48a60f45ac9c984b433f1cccf6.zip chromium_src-8ff00d7d7139ae48a60f45ac9c984b433f1cccf6.tar.gz chromium_src-8ff00d7d7139ae48a60f45ac9c984b433f1cccf6.tar.bz2 |
Move a bunch more code into the content namespace.
Review URL: https://codereview.chromium.org/11231077
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163632 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/ssl/ssl_manager.h')
-rw-r--r-- | content/browser/ssl/ssl_manager.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/browser/ssl/ssl_manager.h b/content/browser/ssl/ssl_manager.h index a8f5674..b2e86d4 100644 --- a/content/browser/ssl/ssl_manager.h +++ b/content/browser/ssl/ssl_manager.h @@ -20,11 +20,11 @@ #include "net/base/cert_status_flags.h" #include "net/base/net_errors.h" -class NavigationControllerImpl; class SSLPolicy; namespace content { class NavigationEntryImpl; +class NavigationControllerImpl; struct LoadFromMemoryCacheDetails; struct ResourceRedirectDetails; struct ResourceRequestDetails; @@ -63,11 +63,11 @@ class SSLManager : public content::NotificationObserver { // Called when SSL state for a host or tab changes. Broadcasts the // SSL_INTERNAL_STATE_CHANGED notification. static void NotifySSLInternalStateChanged( - NavigationControllerImpl* controller); + content::NavigationControllerImpl* controller); // Construct an SSLManager for the specified tab. // If |delegate| is NULL, SSLPolicy::GetDefaultPolicy() is used. - explicit SSLManager(NavigationControllerImpl* controller); + explicit SSLManager(content::NavigationControllerImpl* controller); virtual ~SSLManager(); SSLPolicy* policy() { return policy_.get(); } @@ -75,7 +75,7 @@ class SSLManager : public content::NotificationObserver { // The navigation controller associated with this SSLManager. The // NavigationController is guaranteed to outlive the SSLManager. - NavigationControllerImpl* controller() { return controller_; } + content::NavigationControllerImpl* controller() { return controller_; } // This entry point is called directly (instead of via the notification // service) because we need more precise control of the order in which folks @@ -114,7 +114,7 @@ class SSLManager : public content::NotificationObserver { // The NavigationController that owns this SSLManager. We are responsible // for the security UI of this tab. - NavigationControllerImpl* controller_; + content::NavigationControllerImpl* controller_; // Handles registering notifications with the NotificationService. content::NotificationRegistrar registrar_; |