diff options
Diffstat (limited to 'webkit/fileapi/file_system_file_util.h')
-rw-r--r-- | webkit/fileapi/file_system_file_util.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/webkit/fileapi/file_system_file_util.h b/webkit/fileapi/file_system_file_util.h index d6b72e6..f489490 100644 --- a/webkit/fileapi/file_system_file_util.h +++ b/webkit/fileapi/file_system_file_util.h @@ -230,6 +230,14 @@ class FileSystemFileUtil { virtual bool IsDirectory() { return false; } }; + // Returns a pointer to a new instance of AbstractFileEnumerator which is + // implemented for each FileUtil subclass. The instance needs to be freed + // by the caller, and its lifetime should not extend past when the current + // call returns to the main FILE message loop. + virtual AbstractFileEnumerator* CreateFileEnumerator( + FileSystemOperationContext* unused, + const FilePath& root_path); + protected: FileSystemFileUtil() { } @@ -272,14 +280,6 @@ class FileSystemFileUtil { const FilePath& dest_file_path, bool copy); - // Returns a pointer to a new instance of AbstractFileEnumerator which is - // implemented for each FileUtil subclass. The instance needs to be freed - // by the caller, and its lifetime should not extend past when the current - // call returns to the main FILE message loop. - virtual AbstractFileEnumerator* CreateFileEnumerator( - FileSystemOperationContext* unused, - const FilePath& root_path); - friend struct DefaultSingletonTraits<FileSystemFileUtil>; DISALLOW_COPY_AND_ASSIGN(FileSystemFileUtil); }; |