diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-30 10:25:53 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-30 10:25:53 +0000 |
commit | 6c462517ce781f27ed0d6c97f50354485702206c (patch) | |
tree | 801875b7a62761bd2b2817b787cc33df9b706e53 /webkit/fileapi/file_system_path_manager_unittest.cc | |
parent | f69733d14df41c8e10e8f4232da4a5bd477b8348 (diff) | |
download | chromium_src-6c462517ce781f27ed0d6c97f50354485702206c.zip chromium_src-6c462517ce781f27ed0d6c97f50354485702206c.tar.gz chromium_src-6c462517ce781f27ed0d6c97f50354485702206c.tar.bz2 |
Revert 67385 - On windows filepaths need \\?\ prefix to allow extended file path names. Fix to bug 63574.
Turned out that we need more changes to make extended paths work.
BUG=63574
TEST=file_system_operation_unittest.cc and manually tested on FAT32.
Review URL: http://codereview.chromium.org/5259003
TBR=kkanetkar@chromium.org
Review URL: http://codereview.chromium.org/5357009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67703 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.cc | 4 |
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 4e18cd9..7fa3672 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 FileSystemPathManager::GetFileSystemCommonRootDirectory( - data_dir_->path()); + return data_dir_->path().Append( + FileSystemPathManager::kFileSystemDirectory); } private: |