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

Unified Diff: webkit/fileapi/isolated_mount_point_provider.h

Issue 14352004: Split Media-related code from IsolatedMountPointProvider (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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
« no previous file with comments | « webkit/fileapi/file_system_mount_point_provider.h ('k') | webkit/fileapi/isolated_mount_point_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9de55639d83aa0ca501ba85d51655651e080b0e8..fedf047247f97ac8f4e7bb0d4f5f5b0ce4d99b1a 100644
--- a/webkit/fileapi/isolated_mount_point_provider.h
+++ b/webkit/fileapi/isolated_mount_point_provider.h
@@ -7,24 +7,14 @@
#include "base/memory/scoped_ptr.h"
#include "webkit/fileapi/file_system_mount_point_provider.h"
-#include "webkit/fileapi/media/mtp_device_file_system_config.h"
namespace fileapi {
class AsyncFileUtilAdapter;
-class IsolatedContext;
-class MediaPathFilter;
-
-#if defined(SUPPORT_MTP_DEVICE_FILESYSTEM)
-class DeviceMediaAsyncFileUtil;
-#endif
class IsolatedMountPointProvider : public FileSystemMountPointProvider {
public:
- static const char kMediaPathFilterKey[];
- static const char kMTPDeviceDelegateURLKey[];
-
- explicit IsolatedMountPointProvider(const base::FilePath& profile_path);
+ IsolatedMountPointProvider();
virtual ~IsolatedMountPointProvider();
// FileSystemMountPointProvider implementation.
@@ -69,20 +59,8 @@ class IsolatedMountPointProvider : public FileSystemMountPointProvider {
const DeleteFileSystemCallback& callback) OVERRIDE;
private:
- // Store the profile path. We need this to create temporary snapshot files.
- const base::FilePath profile_path_;
-
- scoped_ptr<MediaPathFilter> media_path_filter_;
- scoped_ptr<CopyOrMoveFileValidatorFactory>
- media_copy_or_move_file_validator_factory_;
-
scoped_ptr<AsyncFileUtilAdapter> isolated_file_util_;
scoped_ptr<AsyncFileUtilAdapter> dragged_file_util_;
- scoped_ptr<AsyncFileUtilAdapter> native_media_file_util_;
-
-#if defined(SUPPORT_MTP_DEVICE_FILESYSTEM)
- scoped_ptr<DeviceMediaAsyncFileUtil> device_media_async_file_util_;
-#endif
};
} // namespace fileapi
« no previous file with comments | « webkit/fileapi/file_system_mount_point_provider.h ('k') | webkit/fileapi/isolated_mount_point_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698