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

Unified Diff: content/browser/ssl/ssl_policy_backend.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_policy.cc ('k') | content/browser/ssl/ssl_policy_backend.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/ssl/ssl_policy_backend.h
===================================================================
--- content/browser/ssl/ssl_policy_backend.h (revision 163514)
+++ content/browser/ssl/ssl_policy_backend.h (working copy)
@@ -12,12 +12,15 @@
#include "base/string16.h"
#include "net/base/x509_certificate.h"
-class NavigationControllerImpl;
class SSLHostState;
+namespace content {
+class NavigationControllerImpl;
+}
+
class SSLPolicyBackend {
public:
- explicit SSLPolicyBackend(NavigationControllerImpl* controller);
+ explicit SSLPolicyBackend(content::NavigationControllerImpl* controller);
// Records that a host has run insecure content.
void HostRanInsecureContent(const std::string& host, int pid);
@@ -39,7 +42,7 @@
// SSL state specific for each host.
SSLHostState* ssl_host_state_;
- NavigationControllerImpl* controller_;
+ content::NavigationControllerImpl* controller_;
DISALLOW_COPY_AND_ASSIGN(SSLPolicyBackend);
};
« no previous file with comments | « content/browser/ssl/ssl_policy.cc ('k') | content/browser/ssl/ssl_policy_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698