summaryrefslogtreecommitdiffstats
path: root/base/platform_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/platform_file.h')
-rw-r--r--base/platform_file.h7
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