Create temporary cache_path directory if none is specified (issue #735).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@814 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-09-27 21:25:29 +00:00
parent 61b0934996
commit c4a2ee9b8d
2 changed files with 10 additions and 0 deletions

View File

@ -15,6 +15,7 @@
#include "base/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "base/scoped_temp_dir.h"
#include "base/threading/platform_thread.h"
namespace base {
@ -87,6 +88,7 @@ class CefContext : public CefBase {
CefSettings settings_;
FilePath cache_path_;
ScopedTempDir cache_temp_dir_;
// Map of browsers that currently exist.
BrowserList browserlist_;