diff options
author | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-25 06:42:05 +0000 |
---|---|---|
committer | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-25 06:42:05 +0000 |
commit | 69fb877f00e219b2200348e2f8ffc75efdd46f2d (patch) | |
tree | 8eb7fc787a4a4cd576fcb82d3f1ef37e696dcc77 /webkit/fileapi/file_system_path_manager.h | |
parent | 39a78fdcf1c474632d23ee1481e0752f9d0aea97 (diff) | |
download | chromium_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.h')
-rw-r--r-- | webkit/fileapi/file_system_path_manager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/fileapi/file_system_path_manager.h b/webkit/fileapi/file_system_path_manager.h index 12104ef..41ffd4d 100644 --- a/webkit/fileapi/file_system_path_manager.h +++ b/webkit/fileapi/file_system_path_manager.h @@ -28,6 +28,8 @@ class FileSystemPathManager { bool allow_file_access_from_files); ~FileSystemPathManager(); + static FilePath GetFileSystemCommonRootDirectory(const FilePath& root_path); + // Callback for GetFileSystemRootPath. // If the request is accepted and the root filesystem for the origin exists // the callback is called with success=true and valid root_path and name. |