Index: net/cert/crl_set.cc |
diff --git a/net/cert/crl_set.cc b/net/cert/crl_set.cc |
index de0651666d86050961e4d4a2c9ceb73581e3e3c4..1dd55d765b98a55bea6e6976cabbb60385865680 100644 |
--- a/net/cert/crl_set.cc |
+++ b/net/cert/crl_set.cc |
@@ -21,6 +21,10 @@ namespace net { |
// bytes at |out| and must be exactly equal to the size of the decompressed |
// data. |
static bool DecompressZlib(uint8* out, int out_len, base::StringPiece in) { |
+#if defined(OS_NACL) |
+ NOTIMPLEMENTED(); |
+ return false; |
+#else // defined(OS_NACL) |
z_stream z; |
memset(&z, 0, sizeof(z)); |
@@ -42,6 +46,7 @@ static bool DecompressZlib(uint8* out, int out_len, base::StringPiece in) { |
err: |
inflateEnd(&z); |
return ret; |
+#endif // !defined(OS_NACL) |
Ryan Sleevi
2014/03/06 22:02:17
This approach is really ugly here. CRLSets won't w
Sergey Ulanov
2014/03/07 00:19:47
SSLClientSocket depends on CertVerifier and CertVe
|
} |
CRLSet::CRLSet() |