Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1244)

Unified Diff: content/browser/ssl/ssl_manager.h

Issue 11231077: Move a bunch more code into the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/ssl/ssl_error_handler.cc ('k') | content/browser/ssl/ssl_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/ssl/ssl_manager.h
===================================================================
--- content/browser/ssl/ssl_manager.h (revision 163514)
+++ content/browser/ssl/ssl_manager.h (working copy)
@@ -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 @@
// 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 @@
// 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 @@
// 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_;
« no previous file with comments | « content/browser/ssl/ssl_error_handler.cc ('k') | content/browser/ssl/ssl_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698