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 /base/platform_file.h | |
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 'base/platform_file.h')
-rw-r--r-- | base/platform_file.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/base/platform_file.h b/base/platform_file.h index a9ec59a..7fae75c 100644 --- a/base/platform_file.h +++ b/base/platform_file.h @@ -8,6 +8,7 @@ #include "base/basictypes.h" #include "build/build_config.h" +#include "base/file_path.h" #include "base/time.h" #if defined(OS_WIN) #include <windows.h> @@ -15,8 +16,6 @@ #include <string> -class FilePath; - namespace base { #if defined(OS_WIN) @@ -91,6 +90,10 @@ struct PlatformFileInfo { // The creation time of a file. base::Time creation_time; + + // The full path of a file. Currently only used by FileSystemFileUtil during + // a GetMetadata operation. + FilePath path; }; // Creates or opens the given file. If PLATFORM_FILE_OPEN_ALWAYS is used, and |