Index: crypto/secure_hash.h |
diff --git a/crypto/secure_hash.h b/crypto/secure_hash.h |
index 4a49380334d5c182679d6c1355036e2609283a2b..a0dc80872884ab42033156bb3ea5b33d5ad84942 100644 |
--- a/crypto/secure_hash.h |
+++ b/crypto/secure_hash.h |
@@ -10,6 +10,7 @@ |
#include "crypto/crypto_export.h" |
class Pickle; |
+class PickleReader; |
namespace crypto { |
@@ -36,7 +37,7 @@ class CRYPTO_EXPORT SecureHash { |
// |data_iterator| allows this to be used as part of a larger pickle. |
// |pickle| holds the saved data. |
// Returns success or failure. |
- virtual bool Deserialize(void** data_iterator, Pickle* pickle) = 0; |
+ virtual bool Deserialize(PickleReader* data_iterator) = 0; |
protected: |
SecureHash() {} |