Index: trunk/src/net/base/net_log_logger_unittest.cc |
=================================================================== |
--- trunk/src/net/base/net_log_logger_unittest.cc (revision 239399) |
+++ trunk/src/net/base/net_log_logger_unittest.cc (working copy) |
@@ -28,7 +28,7 @@ |
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, 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, 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); |