mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Eliminate use of scoped directories (issue #670).
- Create a temporary cache_path directory if none is specified (issue #735). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@827 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -28,7 +28,6 @@
|
||||
#include "libcef/printing/win_printing_context.h"
|
||||
#endif
|
||||
|
||||
#include "base/scoped_temp_dir.h"
|
||||
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h"
|
||||
|
||||
namespace base {
|
||||
@ -327,7 +326,6 @@ class CefBrowserImpl : public CefBrowser {
|
||||
|
||||
// These variables are read-only.
|
||||
const CefBrowserSettings& settings() const { return settings_; }
|
||||
const FilePath& file_system_root() const { return file_system_root_.path(); }
|
||||
gfx::NativeView opener_window() { return opener_; }
|
||||
bool is_popup() { return (opener_ != NULL); }
|
||||
|
||||
@ -429,9 +427,6 @@ class CefBrowserImpl : public CefBrowser {
|
||||
// Unique browser ID assigned by the context.
|
||||
int unique_id_;
|
||||
|
||||
// A temporary directory for FileSystem API.
|
||||
ScopedTempDir file_system_root_;
|
||||
|
||||
IMPLEMENT_REFCOUNTING(CefBrowserImpl);
|
||||
IMPLEMENT_LOCKING(CefBrowserImpl);
|
||||
};
|
||||
|
Reference in New Issue
Block a user