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); |