| Index: net/quic/quic_protocol.h
|
| ===================================================================
|
| --- net/quic/quic_protocol.h (revision 177300)
|
| +++ net/quic/quic_protocol.h (working copy)
|
| @@ -42,6 +42,9 @@
|
| : bytes_consumed(bytes_consumed),
|
| fin_consumed(fin_consumed) {
|
| }
|
| + NET_EXPORT_PRIVATE friend std::ostream& operator<<(
|
| + std::ostream& os, const QuicConsumedData& s);
|
| +
|
| size_t bytes_consumed;
|
| bool fin_consumed;
|
| };
|
| @@ -429,6 +432,9 @@
|
| QuicEncryptedPacket(char* buffer, size_t length, bool owns_buffer)
|
| : QuicData(buffer, length, owns_buffer) { }
|
|
|
| + NET_EXPORT_PRIVATE friend std::ostream& operator<<(
|
| + std::ostream& os, const QuicEncryptedPacket& s);
|
| +
|
| base::StringPiece AssociatedData() const {
|
| return base::StringPiece(data() + kStartOfHashData, kStartOfEncryptedData);
|
| }
|
|
|