| Index: net/quic/platform/api/quic_str_cat_test.cc
|
| diff --git a/net/quic/platform/api/quic_str_cat_test.cc b/net/quic/platform/api/quic_str_cat_test.cc
|
| index 3064346952d1e4635c5a4343c152342df4502343..dc417d8e36767fcc287d6d95ef0a77ae781f4562 100644
|
| --- a/net/quic/platform/api/quic_str_cat_test.cc
|
| +++ b/net/quic/platform/api/quic_str_cat_test.cc
|
| @@ -4,10 +4,9 @@
|
|
|
| #include "net/quic/platform/api/quic_str_cat.h"
|
|
|
| -#include "base/strings/string_piece.h"
|
| +#include "net/quic/platform/api/quic_string_piece.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -using base::StringPiece;
|
| using std::string;
|
|
|
| namespace net {
|
| @@ -45,7 +44,7 @@ TEST(QuicStrCatTest, Basics) {
|
|
|
| string strs[] = {"Hello", "Cruel", "World"};
|
|
|
| - StringPiece pieces[] = {"Hello", "Cruel", "World"};
|
| + QuicStringPiece pieces[] = {"Hello", "Cruel", "World"};
|
|
|
| const char* c_strs[] = {"Hello", "Cruel", "World"};
|
|
|
|
|