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

Unified Diff: net/der/input.h

Issue 1541213002: Adding OCSP Parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix break condition. Created 4 years, 11 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 3772d0df927f9b93b2587802ebbddf0dfcfa870d..e909c414578cf17153f9bbc7e5ab024534c49de8 100644
--- a/net/der/input.h
+++ b/net/der/input.h
@@ -56,6 +56,7 @@ class NET_EXPORT_PRIVATE Input {
// Return true if the Input's data and |other|'s data are byte-wise equal.
bool Equals(const Input& other) const;
eroman 2016/02/03 22:54:46 Should delete Equals if introducing operator== so
svaldez 2016/02/04 19:03:25 Splitting out into separate CL.
+ bool operator==(const Input& other) const;
// Returns a pointer to the Input's data. This method is marked as "unsafe"
// because access to the Input's data should be done through ByteReader

Powered by Google App Engine
This is Rietveld 408576698