Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Unified Diff: base/platform_file.h

Issue 6603034: Stop returning the true root path of each filesystem from openFileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/platform_file.h
===================================================================
--- base/platform_file.h (revision 79142)
+++ base/platform_file.h (working copy)
@@ -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 @@
// 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
« no previous file with comments | « no previous file | chrome/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698