From ed65fece343181e91b4d36e161434cc763475de7 Mon Sep 17 00:00:00 2001 From: "dumi@chromium.org" Date: Tue, 31 Aug 2010 19:30:27 +0000 Subject: Add an optional parameter to CreatePlatformFile() to report the type of error that occured while trying to open/create a file. TEST=none BUG=none Review URL: http://codereview.chromium.org/3223007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58045 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/database/vfs_backend.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webkit/database') diff --git a/webkit/database/vfs_backend.cc b/webkit/database/vfs_backend.cc index 6e54f1b..e734a7e 100644 --- a/webkit/database/vfs_backend.cc +++ b/webkit/database/vfs_backend.cc @@ -129,7 +129,7 @@ void VfsBackend::OpenFile(const FilePath& file_path, // Try to open/create the DB file. *file_handle = - base::CreatePlatformFile(file_path.ToWStringHack(), flags, NULL); + base::CreatePlatformFile(file_path, flags, NULL, NULL); } // static @@ -163,7 +163,7 @@ int VfsBackend::DeleteFile(const FilePath& file_path, bool sync_dir) { #if defined(OS_POSIX) if (sync_dir) { base::PlatformFile dir_fd = base::CreatePlatformFile( - file_path.DirName().ToWStringHack(), base::PLATFORM_FILE_READ, NULL); + file_path.DirName(), base::PLATFORM_FILE_READ, NULL, NULL); if (dir_fd == base::kInvalidPlatformFileValue) { error_code = SQLITE_CANTOPEN; } else { -- cgit v1.1