diff options
author | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-24 00:49:40 +0000 |
---|---|---|
committer | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-24 00:49:40 +0000 |
commit | 073a04f0599beb27670d8a6738fcbbc22fa97bcf (patch) | |
tree | d7393b3cd3463dbfaf4bbdc02fdd0a4de0c83995 /webkit/fileapi/file_system_usage_tracker.cc | |
parent | 6bcd5f36cd94649887eff0c87df4f4496001984a (diff) | |
download | chromium_src-073a04f0599beb27670d8a6738fcbbc22fa97bcf.zip chromium_src-073a04f0599beb27670d8a6738fcbbc22fa97bcf.tar.gz chromium_src-073a04f0599beb27670d8a6738fcbbc22fa97bcf.tar.bz2 |
Stop returning the true root path of each filesystem from openFileSystem.
Instead, return the FileSystem URI of the root. This will make it easier
to swap in different filesystem implementations.
BUG=71635
TEST=Just a couple in FileSystemUtilTests, but a bunch of existing ones [this doesn't add much new functionality].
Review URL: http://codereview.chromium.org/6603034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79228 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_usage_tracker.cc')
-rw-r--r-- | webkit/fileapi/file_system_usage_tracker.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webkit/fileapi/file_system_usage_tracker.cc b/webkit/fileapi/file_system_usage_tracker.cc index 9456f2a..85498d3 100644 --- a/webkit/fileapi/file_system_usage_tracker.cc +++ b/webkit/fileapi/file_system_usage_tracker.cc @@ -15,6 +15,7 @@ #include "googleurl/src/gurl.h" #include "webkit/fileapi/file_system_path_manager.h" #include "webkit/fileapi/file_system_usage_cache.h" +#include "webkit/fileapi/sandbox_mount_point_provider.h" namespace fileapi { @@ -98,7 +99,7 @@ FileSystemUsageTracker::FileSystemUsageTracker( bool is_incognito) : file_message_loop_(file_message_loop), base_path_(profile_path.Append( - FileSystemPathManager::kFileSystemDirectory)), + SandboxMountPointProvider::kFileSystemDirectory)), is_incognito_(is_incognito) { DCHECK(file_message_loop); } @@ -123,7 +124,7 @@ void FileSystemUsageTracker::GetOriginUsage( } std::string origin_identifier = - FileSystemPathManager::GetOriginIdentifierFromURL(origin_url); + SandboxMountPointProvider::GetOriginIdentifierFromURL(origin_url); std::string type_string = FileSystemPathManager::GetFileSystemTypeString(type); std::string fs_identifier = origin_identifier + ":" + type_string; @@ -139,7 +140,7 @@ void FileSystemUsageTracker::GetOriginUsage( // Get the filesystem base path (i.e. "FileSystem/<origin>/<type>", // without unique part). FilePath origin_base_path = - FileSystemPathManager::GetFileSystemBaseDirectoryForOriginAndType( + SandboxMountPointProvider::GetFileSystemBaseDirectoryForOriginAndType( base_path_, origin_identifier, type); if (origin_base_path.empty()) { // The directory does not exist. |