Index: trunk/src/media/webm/chromeos/webm_encoder.cc |
=================================================================== |
--- trunk/src/media/webm/chromeos/webm_encoder.cc (revision 239399) |
+++ trunk/src/media/webm/chromeos/webm_encoder.cc (working copy) |
@@ -157,7 +157,7 @@ |
} |
bool WebmEncoder::WriteWebmHeader() { |
- output_ = base::OpenFile(output_path_, "wb"); |
+ output_ = file_util::OpenFile(output_path_, "wb"); |
if (!output_) |
return false; |
@@ -251,7 +251,7 @@ |
EndSubElement(); // Cluster |
EndSubElement(); // Segment |
DCHECK(ebml_sub_elements_.empty()); |
- return base::CloseFile(output_) && !has_errors_; |
+ return file_util::CloseFile(output_) && !has_errors_; |
} |
void WebmEncoder::StartSubElement(unsigned long class_id) { |