| Index: net/quic/core/quic_packet_creator.cc
|
| diff --git a/net/quic/core/quic_packet_creator.cc b/net/quic/core/quic_packet_creator.cc
|
| index 7481e1a79540e6ca7650ba95688ad9aa8760780a..1ba446b55c2ab5087953e8ab9f344c668180f0e6 100644
|
| --- a/net/quic/core/quic_packet_creator.cc
|
| +++ b/net/quic/core/quic_packet_creator.cc
|
| @@ -15,8 +15,8 @@
|
| #include "net/quic/platform/api/quic_aligned.h"
|
| #include "net/quic/platform/api/quic_bug_tracker.h"
|
| #include "net/quic/platform/api/quic_logging.h"
|
| +#include "net/quic/platform/api/quic_string_piece.h"
|
|
|
| -using base::StringPiece;
|
| using std::string;
|
|
|
| // If true, enforce that QUIC CHLOs fit in one packet.
|
| @@ -192,7 +192,8 @@ void QuicPacketCreator::CreateStreamFrame(QuicStreamId id,
|
| if (iov_offset == iov.total_length) {
|
| QUIC_BUG_IF(!fin) << "Creating a stream frame with no data or fin.";
|
| // Create a new packet for the fin, if necessary.
|
| - *frame = QuicFrame(new QuicStreamFrame(id, true, offset, StringPiece()));
|
| + *frame =
|
| + QuicFrame(new QuicStreamFrame(id, true, offset, QuicStringPiece()));
|
| return;
|
| }
|
|
|
|
|