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

Unified Diff: content/common/gpu/media/vaapi_h264_decoder_unittest.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months 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: content/common/gpu/media/vaapi_h264_decoder_unittest.cc
diff --git a/content/common/gpu/media/vaapi_h264_decoder_unittest.cc b/content/common/gpu/media/vaapi_h264_decoder_unittest.cc
index aa1946d7ecf3acd8c808f4f30aab9f44c2f21f88..e242e3c7cebba327474643e9cdadec75edb83754 100644
--- a/content/common/gpu/media/vaapi_h264_decoder_unittest.cc
+++ b/content/common/gpu/media/vaapi_h264_decoder_unittest.cc
@@ -150,7 +150,7 @@ bool VaapiH264DecoderLoop::Initialize(base::FilePath input_file,
// This creates or truncates output_file.
// Without it, AppendToFile() will not work.
if (!output_file.empty()) {
- if (file_util::WriteFile(output_file, NULL, 0) != 0) {
+ if (base::WriteFile(output_file, NULL, 0) != 0) {
return false;
}
output_file_ = output_file;
« no previous file with comments | « content/browser/storage_partition_impl_unittest.cc ('k') | content/common/gpu/media/video_decode_accelerator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698