| Index: media/video/capture/file_video_capture_device.h
|
| diff --git a/media/video/capture/file_video_capture_device.h b/media/video/capture/file_video_capture_device.h
|
| index 06e6033254d97e852f6ab8af04968db7634f0d89..e5b65cecfef1eac9f0472d054e2b264e3002ac7b 100644
|
| --- a/media/video/capture/file_video_capture_device.h
|
| +++ b/media/video/capture/file_video_capture_device.h
|
| @@ -7,8 +7,8 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/files/file.h"
|
| #include "base/memory/scoped_ptr.h"
|
| -#include "base/platform_file.h"
|
| #include "base/threading/thread.h"
|
| #include "base/threading/thread_checker.h"
|
| #include "media/video/capture/video_capture_device.h"
|
| @@ -64,7 +64,7 @@ class MEDIA_EXPORT FileVideoCaptureDevice : public VideoCaptureDevice {
|
| // The following members belong to |capture_thread_|.
|
| scoped_ptr<VideoCaptureDevice::Client> client_;
|
| const base::FilePath file_path_;
|
| - base::PlatformFile file_;
|
| + base::File file_;
|
| scoped_ptr<uint8[]> video_frame_;
|
| VideoCaptureFormat capture_format_;
|
| int frame_size_;
|
|
|