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

Unified Diff: content/public/browser/navigation_details.h

Issue 2239273002: Don't use SSLStatus from FrameHostMsg_DidCommitProvisionalLoad and instead cache it on the browser … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 4 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/public/browser/navigation_details.h
diff --git a/content/public/browser/navigation_details.h b/content/public/browser/navigation_details.h
index dc473878f3c227332364d08657c1b13f25d57413..6cbcbdc886deb0af3e045f2b12cf3f043b73c45f 100644
--- a/content/public/browser/navigation_details.h
+++ b/content/public/browser/navigation_details.h
@@ -8,7 +8,6 @@
#include <string>
#include "content/common/content_export.h"
#include "content/public/browser/navigation_type.h"
-#include "content/public/common/ssl_status.h"
#include "url/gurl.h"
namespace content {
@@ -52,13 +51,6 @@ struct CONTENT_EXPORT LoadCommittedDetails {
// sub-frame.
bool is_main_frame;
- // When the committed load is a web page from the renderer, this contains
- // the security state if the page is secure.
- // See FrameHostMsg_DidCommitProvisionalLoad_Params.security_info, where it
- // comes from, after being deserialized with
- // SSLManager::DeserializeSecurityInfo.
- SSLStatus ssl_status;
-
// Returns whether the main frame navigated to a different page (e.g., not
// scrolling to a fragment inside the current page). We often need this logic
// for showing or hiding something.

Powered by Google App Engine
This is Rietveld 408576698