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

Unified Diff: components/certificate_transparency/log_proofs_fetcher.h

Issue 1100003006: Certificate Transparency: Fetching of Signed Tree Heads (DRAFT) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merging with master Created 5 years, 7 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: components/certificate_transparency/log_proofs_fetcher.h
diff --git a/components/certificate_transparency/log_proofs_fetcher.h b/components/certificate_transparency/log_proofs_fetcher.h
new file mode 100644
index 0000000000000000000000000000000000000000..b4b041d9aad30f4d5180261e4bd506ffa007a8f3
--- /dev/null
+++ b/components/certificate_transparency/log_proofs_fetcher.h
@@ -0,0 +1,78 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOFS_FETCHER_H_
+#define COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOFS_FETCHER_H_
+
+#include <map>
+#include <string>
+
+#include "base/memory/scoped_ptr.h"
+#include "net/base/io_buffer.h"
+#include "net/url_request/url_request.h"
+
+namespace base {
+class Value;
+}
+
+namespace net {
+class URLRequestContext;
+class CTLogVerifier;
+
+namespace ct {
+struct SignedTreeHead;
+} // namespace ct
+
+} // namespace net
+
+namespace certificate_transparency {
+
davidben 2015/05/07 21:59:38 Comment describing what this class does.
+class LogProofsFetcher : public net::URLRequest::Delegate {
+ public:
davidben 2015/05/07 21:59:38 Document that the LogProofsFetcher cannot outlive
+ explicit LogProofsFetcher(net::URLRequestContext* request_context);
+
+ ~LogProofsFetcher() override;
+
davidben 2015/05/07 21:59:37 Comment for what this function does.
+ void FetchSTH(net::CTLogVerifier* verifier);
davidben 2015/05/07 21:59:38 Nit: STH -> SignedTreeHead? Most APIs seem to use
+
+ // net::URLRequest::Delegate
+ void OnResponseStarted(net::URLRequest* request) override;
+ void OnReadCompleted(net::URLRequest* request, int bytes_read) override;
+
+ private:
+ scoped_ptr<net::URLRequest> CreateURLRequest(GURL fetch_sth_url);
+
+ // Performs post-report cleanup.
+ void RequestComplete(net::URLRequest* request, int bytes_read);
+ void RequestCleanup(net::URLRequest* request);
+
+ struct NET_EXPORT_PRIVATE FetchParams {
davidben 2015/05/07 21:59:38 Why is this NET_EXPORT_PRIVATE? It's not in net an
Eran Messeri 2015/06/18 15:18:43 Done.
+ explicit FetchParams(net::CTLogVerifier* verifier);
+ ~FetchParams();
+
+ net::CTLogVerifier* verifier;
+ scoped_refptr<net::IOBufferWithSize> sth_buffer;
+ int read_bytes;
+ };
+
+ typedef std::map<net::URLRequest*, FetchParams*> RequestsMap;
+
+ net::URLRequestContext* const request_context_;
+
+ // Owns the contained requests.
+ RequestsMap inflight_requests_;
+
+ DISALLOW_COPY_AND_ASSIGN(LogProofsFetcher);
+};
+
+class CTLogResponseParser {
davidben 2015/05/07 21:59:38 We don't usually create empty classes for naming.
+ public:
+ // Extracts STH from the json struct
davidben 2015/05/07 21:59:38 Period at the end. Mention that it returns false o
+ static bool FillSignedTreeHead(const base::StringPiece& json_sth,
+ net::ct::SignedTreeHead* sth);
+};
davidben 2015/05/07 21:59:38 Probably wants to be in a separate header / source
+
+} // namespace certificate_transparency
+
+#endif // COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOFS_FETCHER_H_

Powered by Google App Engine
This is Rietveld 408576698