| Index: net/quic/core/quic_utils_test.cc
|
| diff --git a/net/quic/core/quic_utils_test.cc b/net/quic/core/quic_utils_test.cc
|
| index 6d0be398b07ec2ed2f57b7edd62ea2ab0b7b356d..201ae4b0de2d95b5fca20ba13113eabd79c35bf2 100644
|
| --- a/net/quic/core/quic_utils_test.cc
|
| +++ b/net/quic/core/quic_utils_test.cc
|
| @@ -7,7 +7,6 @@
|
| #include "net/quic/core/crypto/crypto_protocol.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -using base::StringPiece;
|
| using std::string;
|
|
|
| namespace net {
|
| @@ -95,7 +94,7 @@ TEST(QuicUtilsHashTest, ReferenceTest) {
|
| data[i] = i % 255;
|
| }
|
| EXPECT_EQ(IncrementalHashReference(data.data(), data.size()),
|
| - QuicUtils::FNV1a_128_Hash(StringPiece(
|
| + QuicUtils::FNV1a_128_Hash(QuicStringPiece(
|
| reinterpret_cast<const char*>(data.data()), data.size())));
|
| }
|
|
|
|
|