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

Unified Diff: content/browser/loader/resource_loader.h

Issue 88643002: SignedCertificateTimestamp storing & serialization code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@erans_patches
Patch Set: Fixes for eran Created 7 years, 1 month 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 | content/browser/loader/resource_loader.cc » ('j') | content/browser/loader/resource_loader.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/loader/resource_loader.h
diff --git a/content/browser/loader/resource_loader.h b/content/browser/loader/resource_loader.h
index be2c6c5b97c5cc03634853b44ac8d328e6593ce4..38e1220fc51b866c7a455c89efc1093100a1872d 100644
--- a/content/browser/loader/resource_loader.h
+++ b/content/browser/loader/resource_loader.h
@@ -12,6 +12,7 @@
#include "content/browser/ssl/ssl_error_handler.h"
#include "content/common/content_export.h"
#include "content/public/browser/resource_controller.h"
+#include "content/public/common/ssl_status.h"
#include "net/url_request/url_request.h"
namespace content {
@@ -83,6 +84,14 @@ class CONTENT_EXPORT ResourceLoader : public net::URLRequest::Delegate,
void StartRequestInternal();
void CancelRequestInternal(int error, bool from_renderer);
+ // Stores the SignedCertificateTimestamps held in |sct_list| in the
+ // SignedCertificateTimestampStore singleton, associated with |process_id|.
+ // On return, |signed_certificate_timestamp_ids| contains the assigned ID and
+ // verification status of each SignedCertificateTimestamp.
+ void StoreSignedCertificateTimestamps(
+ const net::SignedCertificateTimestampAndStatusList& sct_list,
+ int process_id, content::SignedCertificateTimestampIDStatusList*
jam 2013/11/27 01:07:50 nit: no "content::" inside content. put this on it
+ signed_certificate_timestamp_ids);
void CompleteResponseStarted();
void StartReading(bool is_continuation);
void ResumeReading();
« no previous file with comments | « no previous file | content/browser/loader/resource_loader.cc » ('j') | content/browser/loader/resource_loader.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698