Index: webkit/fileapi/file_system_util.h |
diff --git a/webkit/fileapi/file_system_util.h b/webkit/fileapi/file_system_util.h |
index 219860b78e0d2f604f13fc9624a32545b4ff141b..9fdf0e6c470edf566c0cb83b09f1f389fc6bf285 100644 |
--- a/webkit/fileapi/file_system_util.h |
+++ b/webkit/fileapi/file_system_util.h |
@@ -35,7 +35,11 @@ bool CrackFileSystemURL(const GURL& url, |
// |origin_url| and |type|. The returned URI can be used as a root path |
// of the filesystem (e.g. <returned_URI> + "/relative/path" will compose |
// a path pointing to the entry "/relative/path" in the filesystem). |
-GURL GetFileSystemRootURI(const GURL& origin_url, fileapi::FileSystemType type); |
+GURL GetFileSystemRootURI(const GURL& origin_url, FileSystemType type); |
+ |
+// Returns the name for the filesystem that is specified by a pair of |
+// |origin_url| and |type|. |
satorux1
2011/12/27 18:56:37
Would be nice to add some example so developers ca
kinuko
2011/12/28 10:59:35
Done.
|
+std::string GetFileSystemName(const GURL& origin_url, FileSystemType type); |
// Converts FileSystemType |type| to/from the StorageType |storage_type| that |
// is used for the unified quota system. |