| Index: webkit/fileapi/file_system_util.cc
|
| diff --git a/webkit/fileapi/file_system_util.cc b/webkit/fileapi/file_system_util.cc
|
| index 1e8fff411c6f08b6f222ca4bcfae208cb69518f2..cbeba4b4cef42feb6f73d5c7a42122bc97ec076a 100644
|
| --- a/webkit/fileapi/file_system_util.cc
|
| +++ b/webkit/fileapi/file_system_util.cc
|
| @@ -62,8 +62,8 @@ bool CrackFileSystemURL(const GURL& url, GURL* origin_url, FileSystemType* type,
|
| return false;
|
|
|
| std::string path = net::UnescapeURLComponent(bare_url.path(),
|
| - UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS |
|
| - UnescapeRule::CONTROL_CHARS);
|
| + net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS |
|
| + net::UnescapeRule::CONTROL_CHARS);
|
| if (path.compare(0, strlen(kPersistentDir), kPersistentDir) == 0) {
|
| file_system_type = kFileSystemTypePersistent;
|
| path = path.substr(strlen(kPersistentDir));
|
|
|