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

Unified Diff: trunk/src/media/audio/win/audio_unified_win_unittest.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/audio/win/audio_unified_win.cc ('k') | trunk/src/media/base/container_names_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/media/audio/win/audio_unified_win_unittest.cc
===================================================================
--- trunk/src/media/audio/win/audio_unified_win_unittest.cc (revision 239399)
+++ trunk/src/media/audio/win/audio_unified_win_unittest.cc (working copy)
@@ -74,7 +74,7 @@
file_name = file_name.AppendASCII(kDeltaTimeMsFileName);
EXPECT_TRUE(!text_file_);
- text_file_ = base::OpenFile(file_name, "wt");
+ text_file_ = file_util::OpenFile(file_name, "wt");
DLOG_IF(ERROR, !text_file_) << "Failed to open log file.";
VLOG(0) << ">> Output file " << file_name.value() << " has been created.";
@@ -84,7 +84,7 @@
fprintf(text_file_, "%d\n", delta_times_[elements_written]);
++elements_written;
}
- base::CloseFile(text_file_);
+ file_util::CloseFile(text_file_);
}
virtual int OnMoreData(AudioBus* dest,
« no previous file with comments | « trunk/src/media/audio/win/audio_unified_win.cc ('k') | trunk/src/media/base/container_names_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698