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_low_latency_output_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
Index: trunk/src/media/audio/win/audio_low_latency_output_win_unittest.cc
===================================================================
--- trunk/src/media/audio/win/audio_low_latency_output_win_unittest.cc (revision 239399)
+++ trunk/src/media/audio/win/audio_low_latency_output_win_unittest.cc (working copy)
@@ -97,7 +97,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.";
// Write the array which contains delta times to a text file.
@@ -107,7 +107,7 @@
++elements_written;
}
- base::CloseFile(text_file_);
+ file_util::CloseFile(text_file_);
}
// AudioOutputStream::AudioSourceCallback implementation.
« no previous file with comments | « trunk/src/media/audio/win/audio_low_latency_input_win_unittest.cc ('k') | trunk/src/media/audio/win/audio_unified_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698