Index: trunk/src/content/child/npapi/plugin_stream_posix.cc |
=================================================================== |
--- trunk/src/content/child/npapi/plugin_stream_posix.cc (revision 239400) |
+++ trunk/src/content/child/npapi/plugin_stream_posix.cc (working copy) |
@@ -34,7 +34,7 @@ |
DCHECK_EQ(static_cast<FILE*>(NULL), temp_file_); |
if (base::CreateTemporaryFile(&temp_file_path_)) |
- temp_file_ = file_util::OpenFile(temp_file_path_, "a"); |
+ temp_file_ = base::OpenFile(temp_file_path_, "a"); |
if (!temp_file_) { |
base::DeleteFile(temp_file_path_, false); |
@@ -48,7 +48,7 @@ |
if (!TempFileIsValid()) |
return; |
- file_util::CloseFile(temp_file_); |
+ base::CloseFile(temp_file_); |
ResetTempFileHandle(); |
} |