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

Unified Diff: net/der/input.h

Issue 1923433002: Certificate path builder for new certificate verification library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 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: net/der/input.h
diff --git a/net/der/input.h b/net/der/input.h
index 121a9e0770a949c077bd5e6047a37b7b39c5dd2c..2ba7ace6aeb2e4b03f8b18cb42b4628d3cbe3895 100644
--- a/net/der/input.h
+++ b/net/der/input.h
@@ -44,6 +44,10 @@ class NET_EXPORT_PRIVATE Input {
// Creates an empty Input, one from which no data can be read.
Input();
+ // Creates an Input pointed to the same section of |new_base| as |other|
+ // points to in |old_base|.
+ Input(const Input& other, const Input& old_base, const Input& new_base);
+
// Creates an Input from a constant array |data|.
template <size_t N>
explicit Input(const uint8_t(&data)[N])

Powered by Google App Engine
This is Rietveld 408576698