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

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

Issue 10582007: Moving LoadFromMemoryCacheDetails to content/public/browser and making it a struct. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
Index: content/browser/ssl/ssl_manager.h
diff --git a/content/browser/ssl/ssl_manager.h b/content/browser/ssl/ssl_manager.h
index db5d5394476e619a39531315a789884ae5560f0e..abd9b3a1dc44105cafab1ca087e22ac81d5b3139 100644
--- a/content/browser/ssl/ssl_manager.h
+++ b/content/browser/ssl/ssl_manager.h
@@ -21,12 +21,12 @@
#include "net/base/cert_status_flags.h"
#include "net/base/net_errors.h"
-class LoadFromMemoryCacheDetails;
class NavigationControllerImpl;
class SSLPolicy;
namespace content {
class NavigationEntryImpl;
+struct LoadFromMemoryCacheDetails;
struct ResourceRedirectDetails;
struct ResourceRequestDetails;
}
@@ -99,7 +99,7 @@ class SSLManager : public content::NotificationObserver {
// DidCommitProvisionalLoad uses the abstract NotificationDetails type since
// the type we need is in NavigationController which would create a circular
// header file dependency.
- void DidLoadFromMemoryCache(LoadFromMemoryCacheDetails* details);
+ void DidLoadFromMemoryCache(content::LoadFromMemoryCacheDetails* details);
void DidStartResourceResponse(content::ResourceRequestDetails* details);
void DidReceiveResourceRedirect(content::ResourceRedirectDetails* details);
void DidChangeSSLInternalState();

Powered by Google App Engine
This is Rietveld 408576698