summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_path_manager_unittest.cc
diff options
context:
space:
mode:
authorkkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-25 06:42:05 +0000
committerkkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-25 06:42:05 +0000
commit69fb877f00e219b2200348e2f8ffc75efdd46f2d (patch)
tree8eb7fc787a4a4cd576fcb82d3f1ef37e696dcc77 /webkit/fileapi/file_system_path_manager_unittest.cc
parent39a78fdcf1c474632d23ee1481e0752f9d0aea97 (diff)
downloadchromium_src-69fb877f00e219b2200348e2f8ffc75efdd46f2d.zip
chromium_src-69fb877f00e219b2200348e2f8ffc75efdd46f2d.tar.gz
chromium_src-69fb877f00e219b2200348e2f8ffc75efdd46f2d.tar.bz2
On windows filepaths need \\?\ prefix to allow extended file path names. Fix to bug 63574.
BUG=63574 TEST=file_system_operation_unittest.cc and manually tested on FAT32. Review URL: http://codereview.chromium.org/5259003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67385 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_path_manager_unittest.cc')
-rw-r--r--webkit/fileapi/file_system_path_manager_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/fileapi/file_system_path_manager_unittest.cc b/webkit/fileapi/file_system_path_manager_unittest.cc
index 7fa3672..4e18cd9 100644
--- a/webkit/fileapi/file_system_path_manager_unittest.cc
+++ b/webkit/fileapi/file_system_path_manager_unittest.cc
@@ -210,8 +210,8 @@ class FileSystemPathManagerTest : public testing::Test {
FilePath data_path() { return data_dir_->path(); }
FilePath file_system_path() {
- return data_dir_->path().Append(
- FileSystemPathManager::kFileSystemDirectory);
+ return FileSystemPathManager::GetFileSystemCommonRootDirectory(
+ data_dir_->path());
}
private: