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

Unified Diff: trunk/src/content/browser/renderer_host/media/video_capture_host_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/content/browser/renderer_host/media/video_capture_host_unittest.cc
===================================================================
--- trunk/src/content/browser/renderer_host/media/video_capture_host_unittest.cc (revision 239399)
+++ trunk/src/content/browser/renderer_host/media/video_capture_host_unittest.cc (working copy)
@@ -60,7 +60,7 @@
void StartDump(int width, int height) {
base::FilePath file_name = base::FilePath(base::StringPrintf(
FILE_PATH_LITERAL("dump_w%d_h%d.yuv"), width, height));
- file_.reset(base::OpenFile(file_name, "wb"));
+ file_.reset(file_util::OpenFile(file_name, "wb"));
expected_size_ = media::VideoFrame::AllocationSize(
media::VideoFrame::I420, gfx::Size(width, height));
}

Powered by Google App Engine
This is Rietveld 408576698