Chromium Code Reviews| Index: webkit/fileapi/file_system_mount_point_provider.h |
| diff --git a/webkit/fileapi/file_system_mount_point_provider.h b/webkit/fileapi/file_system_mount_point_provider.h |
| index 50e0d399931ec3bcacc15bad97a78475991903a3..1a755ae2fb771b9bb5c8cc8be68c76b4c4883d64 100644 |
| --- a/webkit/fileapi/file_system_mount_point_provider.h |
| +++ b/webkit/fileapi/file_system_mount_point_provider.h |
| @@ -70,7 +70,10 @@ class ExternalFileSystemMountPointProvider |
| // Adds a new mount point. |
| virtual void AddMountPoint(FilePath mount_point) = 0; |
| // Remove a mount point. |
| - virtual void RemoveMountPoint(FilePath mount_point) = 0; |
| + virtual void RemoveMountPoint(FilePath mount_point) = 0; |
| + // Gets virtual path by known filesystem path. |
|
zel
2011/05/24 17:54:25
Add: Returns false when filesystem path is not exp
SeRya
2011/05/25 14:23:49
Done.
|
| + virtual bool GetVirtualPath(const FilePath& filesystem_path, |
| + FilePath* virtual_path) = 0; |
| }; |
| } // namespace fileapi |