OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ | 5 #ifndef WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ |
6 #define WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ | 6 #define WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ |
7 | 7 |
8 #include <vector> | |
9 | |
10 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
11 #include "webkit/fileapi/file_system_mount_point_provider.h" | 9 #include "webkit/fileapi/file_system_mount_point_provider.h" |
12 | 10 |
13 namespace fileapi { | 11 namespace fileapi { |
14 | 12 |
15 class IsolatedContext; | 13 class IsolatedContext; |
16 class IsolatedFileUtil; | 14 class IsolatedFileUtil; |
| 15 class MediaFileUtil; |
17 | 16 |
18 class IsolatedMountPointProvider : public FileSystemMountPointProvider { | 17 class IsolatedMountPointProvider : public FileSystemMountPointProvider { |
19 public: | 18 public: |
20 typedef FileSystemMountPointProvider::ValidateFileSystemCallback | 19 typedef FileSystemMountPointProvider::ValidateFileSystemCallback |
21 ValidateFileSystemCallback; | 20 ValidateFileSystemCallback; |
22 | 21 |
23 IsolatedMountPointProvider(); | 22 IsolatedMountPointProvider(); |
24 virtual ~IsolatedMountPointProvider(); | 23 virtual ~IsolatedMountPointProvider(); |
25 | 24 |
26 // FileSystemMountPointProvider implementation. | 25 // FileSystemMountPointProvider implementation. |
(...skipping 22 matching lines...) Expand all Loading... |
49 int64 offset, | 48 int64 offset, |
50 FileSystemContext* context) const OVERRIDE; | 49 FileSystemContext* context) const OVERRIDE; |
51 virtual FileStreamWriter* CreateFileStreamWriter( | 50 virtual FileStreamWriter* CreateFileStreamWriter( |
52 const FileSystemURL& url, | 51 const FileSystemURL& url, |
53 int64 offset, | 52 int64 offset, |
54 FileSystemContext* context) const OVERRIDE; | 53 FileSystemContext* context) const OVERRIDE; |
55 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; | 54 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; |
56 | 55 |
57 private: | 56 private: |
58 scoped_ptr<IsolatedFileUtil> isolated_file_util_; | 57 scoped_ptr<IsolatedFileUtil> isolated_file_util_; |
| 58 scoped_ptr<MediaFileUtil> media_file_util_; |
59 }; | 59 }; |
60 | 60 |
61 } // namespace fileapi | 61 } // namespace fileapi |
62 | 62 |
63 #endif // WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ | 63 #endif // WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ |
OLD | NEW |