mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
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:
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user