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

Unified Diff: media/filters/file_data_source.h

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 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
Index: media/filters/file_data_source.h
diff --git a/media/filters/file_data_source.h b/media/filters/file_data_source.h
index edf9e81aeb20c8e93b246804b5eca5d822936467..c4254864b291e49ccec7214a080edfdd50777602 100644
--- a/media/filters/file_data_source.h
+++ b/media/filters/file_data_source.h
@@ -8,7 +8,7 @@
#include <string>
#include "base/file_path.h"
-#include "base/file_util.h"
+#include "base/files/memory_mapped_file.h"
#include "media/base/data_source.h"
namespace media {
@@ -41,7 +41,7 @@ class MEDIA_EXPORT FileDataSource : public DataSource {
// Informs the host of changes in total and buffered bytes.
void UpdateHostBytes();
- file_util::MemoryMappedFile file_;
+ base::MemoryMappedFile file_;
bool force_read_errors_;
bool force_streaming_;

Powered by Google App Engine
This is Rietveld 408576698