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

Unified Diff: chrome/browser/load_from_memory_cache_details.h

Issue 42263: SSL Fix: Step 4.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « no previous file | chrome/browser/renderer_host/render_view_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/load_from_memory_cache_details.h
===================================================================
--- chrome/browser/load_from_memory_cache_details.h (revision 11701)
+++ chrome/browser/load_from_memory_cache_details.h (working copy)
@@ -10,20 +10,31 @@
class LoadFromMemoryCacheDetails {
public:
- LoadFromMemoryCacheDetails(const GURL& url, int cert_id, int cert_status)
- : url_(url),
- cert_id_(cert_id),
- cert_status_(cert_status)
+ LoadFromMemoryCacheDetails(
+ const GURL& url,
+ const std::string& frame_origin,
+ const std::string& main_frame_origin,
+ int cert_id,
+ int cert_status)
+ : url_(url),
+ frame_origin_(frame_origin),
+ main_frame_origin_(main_frame_origin_),
+ cert_id_(cert_id),
+ cert_status_(cert_status)
{ }
~LoadFromMemoryCacheDetails() { }
const GURL& url() const { return url_; }
+ const std::string& frame_origin() const { return frame_origin_; }
+ const std::string& main_frame_origin() const { return main_frame_origin_; }
int ssl_cert_id() const { return cert_id_; }
int ssl_cert_status() const { return cert_status_; }
private:
GURL url_;
+ std::string frame_origin_;
+ std::string main_frame_origin_;
int cert_id_;
int cert_status_;
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_view_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698