| Index: net/log/net_log_unittest.cc
|
| diff --git a/net/log/net_log_unittest.cc b/net/log/net_log_unittest.cc
|
| index 9fad152c732c7c52d305e16bdb0b417f73663d7b..9f1696bd99817d3d80c2b24923079e3f00df3d4b 100644
|
| --- a/net/log/net_log_unittest.cc
|
| +++ b/net/log/net_log_unittest.cc
|
| @@ -30,7 +30,7 @@ base::Value* NetCaptureModeCallback(NetLogCaptureMode capture_mode) {
|
|
|
| TEST(NetLogTest, Basic) {
|
| TestNetLog net_log;
|
| - TestNetLog::CapturedEntryList entries;
|
| + CapturedNetLogEntry::List entries;
|
| net_log.GetEntries(&entries);
|
| EXPECT_EQ(0u, entries.size());
|
|
|
| @@ -63,7 +63,7 @@ TEST(NetLogTest, CaptureModes) {
|
| net_log.AddGlobalEntry(NetLog::TYPE_SOCKET_ALIVE,
|
| base::Bind(NetCaptureModeCallback));
|
|
|
| - TestNetLog::CapturedEntryList entries;
|
| + CapturedNetLogEntry::List entries;
|
| net_log.GetEntries(&entries);
|
|
|
| ASSERT_EQ(1u, entries.size());
|
|
|