Index: net/websockets/websocket_handshake_unittest.cc |
diff --git a/net/websockets/websocket_handshake_unittest.cc b/net/websockets/websocket_handshake_unittest.cc |
index f68855404aa37fa0a585deb635993fdff88ebb19..e392cfc27a8a980f1f5004b7c342017a74971506 100644 |
--- a/net/websockets/websocket_handshake_unittest.cc |
+++ b/net/websockets/websocket_handshake_unittest.cc |
@@ -6,6 +6,7 @@ |
#include <vector> |
#include "base/scoped_ptr.h" |
+#include "base/string_split.h" |
#include "base/string_util.h" |
#include "net/websockets/websocket_handshake.h" |
#include "testing/gtest/include/gtest/gtest.h" |
@@ -140,7 +141,7 @@ TEST_F(WebSocketHandshakeTest, Connect) { |
"\r\n" |
"\x30\x73\x74\x33\x52\x6C\x26\x71\x2D\x32\x5A\x55\x5E\x77\x65\x75"; |
std::vector<std::string> response_lines; |
- SplitStringDontTrim(kResponse, '\n', &response_lines); |
+ base::SplitStringDontTrim(kResponse, '\n', &response_lines); |
EXPECT_EQ(WebSocketHandshake::MODE_INCOMPLETE, handshake->mode()); |
// too short |