| Index: net/base/net_log_logger_unittest.cc
|
| diff --git a/net/base/net_log_logger_unittest.cc b/net/base/net_log_logger_unittest.cc
|
| index c4ee98a28c9d0d009fffb72b05249363296cbf9d..3dd6915915d644af1b1bc078b1e59bdd4776d726 100644
|
| --- a/net/base/net_log_logger_unittest.cc
|
| +++ b/net/base/net_log_logger_unittest.cc
|
| @@ -35,7 +35,7 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONForNoEvents) {
|
| }
|
|
|
| std::string input;
|
| - ASSERT_TRUE(file_util::ReadFileToString(log_path_, &input));
|
| + ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
|
|
|
| base::JSONReader reader;
|
| scoped_ptr<base::Value> root(reader.ReadToValue(input));
|
| @@ -67,7 +67,7 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithOneEvent) {
|
| }
|
|
|
| std::string input;
|
| - ASSERT_TRUE(file_util::ReadFileToString(log_path_, &input));
|
| + ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
|
|
|
| base::JSONReader reader;
|
| scoped_ptr<base::Value> root(reader.ReadToValue(input));
|
| @@ -102,7 +102,7 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithMultipleEvents) {
|
| }
|
|
|
| std::string input;
|
| - ASSERT_TRUE(file_util::ReadFileToString(log_path_, &input));
|
| + ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
|
|
|
| base::JSONReader reader;
|
| scoped_ptr<base::Value> root(reader.ReadToValue(input));
|
|
|