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

Unified Diff: webkit/fileapi/isolated_mount_point_provider.h

Issue 10810053: Enables internal filesystem types via Isolated filesystems (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: layout test crash fix Created 8 years, 5 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/isolated_file_util_unittest.cc ('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 98fcf053629a80b4ccbd78c9c2017462b32c10b3..fe6f6bd0aa892cc4b44014a327c27e4e4f4ddb26 100644
--- a/webkit/fileapi/isolated_mount_point_provider.h
+++ b/webkit/fileapi/isolated_mount_point_provider.h
@@ -12,6 +12,7 @@
namespace fileapi {
+class DraggedFileUtil;
class IsolatedContext;
class IsolatedFileUtil;
@@ -38,7 +39,7 @@ class IsolatedMountPointProvider : public FileSystemMountPointProvider {
FileSystemType type,
const FilePath& virtual_path) OVERRIDE;
virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE;
- virtual FileSystemFileUtil* GetFileUtil() OVERRIDE;
+ virtual FileSystemFileUtil* GetFileUtil(FileSystemType type) OVERRIDE;
virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path)
const OVERRIDE;
virtual FileSystemOperationInterface* CreateFileSystemOperation(
@@ -56,6 +57,7 @@ class IsolatedMountPointProvider : public FileSystemMountPointProvider {
private:
scoped_ptr<IsolatedFileUtil> isolated_file_util_;
+ scoped_ptr<DraggedFileUtil> dragged_file_util_;
};
} // namespace fileapi
« no previous file with comments | « webkit/fileapi/isolated_file_util_unittest.cc ('k') | webkit/fileapi/isolated_mount_point_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698