Index: net/quic/core/quic_crypto_stream.h |
diff --git a/net/quic/core/quic_crypto_stream.h b/net/quic/core/quic_crypto_stream.h |
index 32ed81a93267258ba3692d38d9fdf70093bc1554..a977242c1624880e1c4ebb3a20110ce374fbbee9 100644 |
--- a/net/quic/core/quic_crypto_stream.h |
+++ b/net/quic/core/quic_crypto_stream.h |
@@ -14,6 +14,7 @@ |
#include "net/quic/core/quic_packets.h" |
#include "net/quic/core/quic_stream.h" |
#include "net/quic/platform/api/quic_export.h" |
+#include "net/quic/platform/api/quic_string_piece.h" |
namespace net { |
@@ -57,8 +58,8 @@ class QUIC_EXPORT_PRIVATE QuicCryptoStream |
// dependent on |label|, |context|, and the stream's negotiated subkey secret. |
// Returns false if the handshake has not been confirmed or the parameters are |
// invalid (e.g. |label| contains null bytes); returns true on success. |
- bool ExportKeyingMaterial(base::StringPiece label, |
- base::StringPiece context, |
+ bool ExportKeyingMaterial(QuicStringPiece label, |
+ QuicStringPiece context, |
size_t result_len, |
std::string* result) const; |