diff options
Diffstat (limited to 'webkit/fileapi/file_system_path_manager.cc')
-rw-r--r-- | webkit/fileapi/file_system_path_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/fileapi/file_system_path_manager.cc b/webkit/fileapi/file_system_path_manager.cc index a81c254..c974dba 100644 --- a/webkit/fileapi/file_system_path_manager.cc +++ b/webkit/fileapi/file_system_path_manager.cc @@ -216,9 +216,9 @@ void FileSystemPathManager::GetFileSystemRootPath( .AppendASCII(type_string); std::string name = storage_identifier + ":" + type_string; - scoped_refptr<GetFileSystemRootPathTask> task = + scoped_refptr<GetFileSystemRootPathTask> task( new GetFileSystemRootPathTask(file_message_loop_, - name, callback.release()); + name, callback.release())); task->Start(origin_url, origin_base_path, create); } |