| Index: media/filters/file_data_source.h
|
| diff --git a/media/filters/file_data_source.h b/media/filters/file_data_source.h
|
| index 4c92ba051018c2852a1b75a7560b9060d3d83671..85e6f6c2a08d0113e9f631891626df42c72553df 100644
|
| --- a/media/filters/file_data_source.h
|
| +++ b/media/filters/file_data_source.h
|
| @@ -7,8 +7,8 @@
|
|
|
| #include <string>
|
|
|
| -#include "base/file_util.h"
|
| #include "base/files/file_path.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_;
|
|
|