diff options
Diffstat (limited to 'net/base/net_log_logger_unittest.cc')
-rw-r--r-- | net/base/net_log_logger_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/base/net_log_logger_unittest.cc b/net/base/net_log_logger_unittest.cc index 05c16c7..3dd6915 100644 --- a/net/base/net_log_logger_unittest.cc +++ b/net/base/net_log_logger_unittest.cc @@ -28,7 +28,7 @@ class NetLogLoggerTest : public testing::Test { TEST_F(NetLogLoggerTest, GeneratesValidJSONForNoEvents) { { // Create and destroy a logger. - FILE* file = base::OpenFile(log_path_, "w"); + FILE* file = file_util::OpenFile(log_path_, "w"); ASSERT_TRUE(file); scoped_ptr<base::Value> constants(NetLogLogger::GetConstants()); NetLogLogger logger(file, *constants); @@ -50,7 +50,7 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONForNoEvents) { TEST_F(NetLogLoggerTest, GeneratesValidJSONWithOneEvent) { { - FILE* file = base::OpenFile(log_path_, "w"); + FILE* file = file_util::OpenFile(log_path_, "w"); ASSERT_TRUE(file); scoped_ptr<base::Value> constants(NetLogLogger::GetConstants()); NetLogLogger logger(file, *constants); @@ -82,7 +82,7 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithOneEvent) { TEST_F(NetLogLoggerTest, GeneratesValidJSONWithMultipleEvents) { { - FILE* file = base::OpenFile(log_path_, "w"); + FILE* file = file_util::OpenFile(log_path_, "w"); ASSERT_TRUE(file); scoped_ptr<base::Value> constants(NetLogLogger::GetConstants()); NetLogLogger logger(file, *constants); |