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

Unified Diff: content/common/gpu/media/video_encode_accelerator_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/video_encode_accelerator_unittest.cc
diff --git a/content/common/gpu/media/video_encode_accelerator_unittest.cc b/content/common/gpu/media/video_encode_accelerator_unittest.cc
index 2fa521786fef6e83c3c91e892e3b4b7146d0ebfb..3977b5082af31e47c0a5a8d67a3edc48b5219b3e 100644
--- a/content/common/gpu/media/video_encode_accelerator_unittest.cc
+++ b/content/common/gpu/media/video_encode_accelerator_unittest.cc
@@ -379,7 +379,7 @@ VEAClient::VEAClient(const TestStream& test_stream,
base::FilePath out_filename(test_stream_.out_filename);
// This creates or truncates out_filename.
// Without it, AppendToFile() will not work.
- EXPECT_EQ(0, file_util::WriteFile(out_filename, NULL, 0));
+ EXPECT_EQ(0, base::WriteFile(out_filename, NULL, 0));
}
thread_checker_.DetachFromThread();
« no previous file with comments | « content/common/gpu/media/video_decode_accelerator_unittest.cc ('k') | content/common/sandbox_mac_fontloading_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698