summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_operation.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/fileapi/file_system_operation.cc')
-rw-r--r--webkit/fileapi/file_system_operation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/fileapi/file_system_operation.cc b/webkit/fileapi/file_system_operation.cc
index 7d2dcb0..a02e2a7 100644
--- a/webkit/fileapi/file_system_operation.cc
+++ b/webkit/fileapi/file_system_operation.cc
@@ -806,7 +806,7 @@ bool FileSystemOperation::VerifyFileSystemPathForRead(
// On Windows, the path will look like /C:/foo/bar; we need to remove the
// leading slash to make it valid. But if it's empty, we shouldn't do
// anything.
- std::string temp = UnescapeURLComponent(path.path(),
+ std::string temp = net::UnescapeURLComponent(path.path(),
UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
if (temp.size())
temp = temp.substr(1);
@@ -861,7 +861,7 @@ bool FileSystemOperation::VerifyFileSystemPathForWrite(
// On Windows, the path will look like /C:/foo/bar; we need to remove the
// leading slash to make it valid. But if it's empty, we shouldn't do
// anything.
- std::string temp = UnescapeURLComponent(path.path(),
+ std::string temp = net::UnescapeURLComponent(path.path(),
UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
if (temp.size())
temp = temp.substr(1);