| Index: webkit/fileapi/file_system_context.cc
|
| diff --git a/webkit/fileapi/file_system_context.cc b/webkit/fileapi/file_system_context.cc
|
| index 124fbe067ac4fa8a947fdcb51ff58ea36b857f06..2b8c7fa9a53ac484fc8c00076001f3f16e7be418 100644
|
| --- a/webkit/fileapi/file_system_context.cc
|
| +++ b/webkit/fileapi/file_system_context.cc
|
| @@ -111,7 +111,7 @@ FileSystemFileUtil* FileSystemContext::GetFileUtil(
|
| GetMountPointProvider(type);
|
| if (!mount_point_provider)
|
| return NULL;
|
| - return mount_point_provider->GetFileUtil();
|
| + return mount_point_provider->GetFileUtil(type);
|
| }
|
|
|
| FileSystemMountPointProvider* FileSystemContext::GetMountPointProvider(
|
| @@ -123,13 +123,13 @@ FileSystemMountPointProvider* FileSystemContext::GetMountPointProvider(
|
| case kFileSystemTypeExternal:
|
| return external_provider_.get();
|
| case kFileSystemTypeIsolated:
|
| + case kFileSystemTypeDragged:
|
| return isolated_provider_.get();
|
| default:
|
| if (provider_map_.find(type) != provider_map_.end())
|
| return provider_map_.find(type)->second;
|
| // Fall through.
|
| case kFileSystemTypeUnknown:
|
| - case kFileSystemTypeDragged:
|
| NOTREACHED();
|
| return NULL;
|
| }
|
|
|