Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: trunk/src/media/webm/chromeos/webm_encoder.cc

Issue 105823009: Revert 239280 "Move more file_util functions to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/media/base/yuv_convert_unittest.cc ('k') | trunk/src/net/android/keystore_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « trunk/src/media/base/yuv_convert_unittest.cc ('k') | trunk/src/net/android/keystore_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698