Chromium Code Reviews| 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..13ef72911802b0cdf657e6bbec1e2b7e5d20b91e 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, SignedCertificateTimestampIDStatusList* |
| + signed_certificate_timestamp_ids); |
|
wtc
2013/11/28 01:28:02
Nit: can the last two lines be formatted this way?
alcutter
2013/11/28 12:08:19
Maybe I follow the "don't abbreviate" doctrine too
|
| void CompleteResponseStarted(); |
| void StartReading(bool is_continuation); |
| void ResumeReading(); |