Chromium Code Reviews| Index: webkit/fileapi/isolated_mount_point_provider.h |
| diff --git a/webkit/fileapi/isolated_mount_point_provider.h b/webkit/fileapi/isolated_mount_point_provider.h |
| index fe6f6bd0aa892cc4b44014a327c27e4e4f4ddb26..bd870459f504b6b67a228093798065b387cbb0d5 100644 |
| --- a/webkit/fileapi/isolated_mount_point_provider.h |
| +++ b/webkit/fileapi/isolated_mount_point_provider.h |
| @@ -15,6 +15,8 @@ namespace fileapi { |
| class DraggedFileUtil; |
| class IsolatedContext; |
| class IsolatedFileUtil; |
| +class MediaPathFilter; |
| +class NativeMediaFileUtil; |
| class IsolatedMountPointProvider : public FileSystemMountPointProvider { |
| public: |
| @@ -56,8 +58,11 @@ class IsolatedMountPointProvider : public FileSystemMountPointProvider { |
| virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; |
| private: |
| + scoped_ptr<MediaPathFilter> media_path_filter_; |
|
vandebo (ex-Chrome)
2012/08/01 01:11:05
nit: two spaces
tzik
2012/08/01 21:46:06
Done.
|
| + |
| scoped_ptr<IsolatedFileUtil> isolated_file_util_; |
| scoped_ptr<DraggedFileUtil> dragged_file_util_; |
| + scoped_ptr<NativeMediaFileUtil> native_media_file_util_; |
| }; |
| } // namespace fileapi |