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

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

Issue 8956059: Rename NavigationController to NavigationControllerImpl and put it into the content namespace. Al... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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_manager.cc ('k') | content/browser/ssl/ssl_policy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/ssl/ssl_policy.h
===================================================================
--- content/browser/ssl/ssl_policy.h (revision 115900)
+++ content/browser/ssl/ssl_policy.h (working copy)
@@ -10,12 +10,15 @@
#include "webkit/glue/resource_type.h"
-class NavigationEntry;
class SSLCertErrorHandler;
class SSLPolicyBackend;
class SSLRequestInfo;
class TabContents;
+namespace content {
+class NavigationEntryImpl;
+}
+
// SSLPolicy
//
// This class is responsible for making the security decisions that concern the
@@ -29,7 +32,7 @@
// An error occurred with the certificate in an SSL connection.
void OnCertError(SSLCertErrorHandler* handler);
- void DidRunInsecureContent(NavigationEntry* entry,
+ void DidRunInsecureContent(content::NavigationEntryImpl* entry,
const std::string& security_origin);
// We have started a resource request with the given info.
@@ -37,7 +40,8 @@
// Update the SSL information in |entry| to match the current state.
// |tab_contents| is the TabContents associated with this entry.
- void UpdateEntry(NavigationEntry* entry, TabContents* tab_contents);
+ void UpdateEntry(content::NavigationEntryImpl* entry,
+ TabContents* tab_contents);
SSLPolicyBackend* backend() const { return backend_; }
@@ -54,7 +58,7 @@
// If the security style of |entry| has not been initialized, then initialize
// it with the default style for its URL.
- void InitializeEntryIfNeeded(NavigationEntry* entry);
+ void InitializeEntryIfNeeded(content::NavigationEntryImpl* entry);
// Mark |origin| as having run insecure content in the process with ID |pid|.
void OriginRanInsecureContent(const std::string& origin, int pid);
« no previous file with comments | « content/browser/ssl/ssl_manager.cc ('k') | content/browser/ssl/ssl_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698