diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-25 22:55:04 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-25 22:55:04 +0000 |
commit | d6afd11938f639f8d1c6a8d100128ce20ea7073e (patch) | |
tree | 5337131666dda2050ae459ff332155f70d1a0e51 /webkit/fileapi/local_file_util.h | |
parent | e43526b4a7caa6ff4d3b54029cd34e6d22b707c6 (diff) | |
download | chromium_src-d6afd11938f639f8d1c6a8d100128ce20ea7073e.zip chromium_src-d6afd11938f639f8d1c6a8d100128ce20ea7073e.tar.gz chromium_src-d6afd11938f639f8d1c6a8d100128ce20ea7073e.tar.bz2 |
Enables internal filesystem types via Isolated filesystems.
* cracks isolated path in FileSystemURL ctor
* FileUtils no longer need to crack the isolated path by themselves
* Make IsolatedFileUtil inherit from LocalFileUtil
* Have a separate FileUtil for DraggedFileUtil, which inherits from IsolatedFileUtil
BUG=134078,138022
TEST=existing tests
Review URL: https://chromiumcodereview.appspot.com/10810053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148440 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/local_file_util.h')
-rw-r--r-- | webkit/fileapi/local_file_util.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/webkit/fileapi/local_file_util.h b/webkit/fileapi/local_file_util.h index f933ff2..29f3da8 100644 --- a/webkit/fileapi/local_file_util.h +++ b/webkit/fileapi/local_file_util.h @@ -37,9 +37,6 @@ class FileSystemURL; // An instance of this class is created and owned by *MountPointProvider. class FILEAPI_EXPORT_PRIVATE LocalFileUtil : public FileSystemFileUtil { public: - // |underlying_file_util| is owned by the instance. It will be deleted by - // the owner instance. For example, it can be instanciated as follows: - // FileSystemFileUtil* file_util = new LocalFileUtil(new NativeFileUtil()); LocalFileUtil(); virtual ~LocalFileUtil(); |