Change CefContext::cache_path_ type from std::wstring to FilePath.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@143 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2010-11-18 14:47:38 +00:00
parent 227b9df643
commit f1e4219271
4 changed files with 15 additions and 10 deletions

View File

@ -192,5 +192,9 @@ FilePath BrowserDatabaseSystem::GetFullFilePathForVfsFile(
// This method is getting called when an empty localStorage database is
// deleted. In that case, just return the path.
#if defined(OS_WIN)
return FilePath(vfs_file_name);
#else
return FilePath(UTF16ToUTF8(vfs_file_name));
#endif
}