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

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

Issue 12321062: base: Move MemoryMappedFile out of file_util.h and into its own header file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chrome_frame again Created 7 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
« no previous file with comments | « chrome_frame/test/ui_test.cc ('k') | content/renderer/hyphenator/hyphenator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/media/h264_parser_unittest.cc
diff --git a/content/common/gpu/media/h264_parser_unittest.cc b/content/common/gpu/media/h264_parser_unittest.cc
index 7c2a75756eaaa324037bdf8cc6f33749c832c618..2aa9f43e94b2199578e53d0fd6fd08667f8ea093 100644
--- a/content/common/gpu/media/h264_parser_unittest.cc
+++ b/content/common/gpu/media/h264_parser_unittest.cc
@@ -5,7 +5,7 @@
#include "testing/gtest/include/gtest/gtest.h"
#include "base/command_line.h"
-#include "base/file_util.h"
+#include "base/files/memory_mapped_file.h"
#include "base/logging.h"
#include "base/string_number_conversions.h"
#include "content/common/gpu/media/h264_parser.h"
@@ -20,7 +20,7 @@ int num_nalus = 759;
TEST(H264ParserTest, StreamFileParsing) {
base::FilePath fp(test_stream_filename);
- file_util::MemoryMappedFile stream;
+ base::MemoryMappedFile stream;
CHECK(stream.Initialize(fp)) << "Couldn't open stream file: "
<< test_stream_filename;
DVLOG(1) << "Parsing file: " << test_stream_filename;
« no previous file with comments | « chrome_frame/test/ui_test.cc ('k') | content/renderer/hyphenator/hyphenator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698