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

Unified Diff: webkit/database/vfs_backend.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « webkit/database/database_util.cc ('k') | webkit/database/vfs_backend.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/database/vfs_backend.h
diff --git a/webkit/database/vfs_backend.h b/webkit/database/vfs_backend.h
index 8fba3fa51b4299c38689275b831ef8e314b111ef..0459958c77859d87d3da82bb7f1c6d994dd03f15 100644
--- a/webkit/database/vfs_backend.h
+++ b/webkit/database/vfs_backend.h
@@ -10,25 +10,27 @@
#include "base/string16.h"
#include "webkit/storage/webkit_storage_export.h"
+namespace base {
class FilePath;
+}
namespace webkit_database {
class WEBKIT_STORAGE_EXPORT VfsBackend {
public:
- static void OpenFile(const FilePath& file_path,
+ static void OpenFile(const base::FilePath& file_path,
int desired_flags,
base::PlatformFile* file_handle);
- static void OpenTempFileInDirectory(const FilePath& dir_path,
+ static void OpenTempFileInDirectory(const base::FilePath& dir_path,
int desired_flags,
base::PlatformFile* file_handle);
- static int DeleteFile(const FilePath& file_path, bool sync_dir);
+ static int DeleteFile(const base::FilePath& file_path, bool sync_dir);
- static uint32 GetFileAttributes(const FilePath& file_path);
+ static uint32 GetFileAttributes(const base::FilePath& file_path);
- static int64 GetFileSize(const FilePath& file_path);
+ static int64 GetFileSize(const base::FilePath& file_path);
// Used to make decisions in the DatabaseDispatcherHost.
static bool OpenTypeIsReadWrite(int desired_flags);
« no previous file with comments | « webkit/database/database_util.cc ('k') | webkit/database/vfs_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698