CEF3: Update to Chromium revision 130586.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@578 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-04-04 18:18:09 +00:00
parent 0b3ef6e2cd
commit f94336aade
17 changed files with 124 additions and 132 deletions

View File

@@ -12,22 +12,21 @@
#include "base/memory/scoped_ptr.h"
#include "content/public/browser/browser_context.h"
class DownloadManager;
namespace content {
class DownloadManagerDelegate;
class ResourceContext;
class SpeechRecognitionPreferences;
}
class CefBrowserMainParts;
class CefDownloadManagerDelegate;
class CefBrowserContext : public content::BrowserContext {
public:
explicit CefBrowserContext(CefBrowserMainParts* main_parts);
CefBrowserContext();
virtual ~CefBrowserContext();
void InitWhileIOAllowed();
// BrowserContext methods.
virtual FilePath GetPath() OVERRIDE;
virtual bool IsOffTheRecord() const OVERRIDE;
@@ -56,8 +55,6 @@ class CefBrowserContext : public content::BrowserContext {
scoped_refptr<content::SpeechRecognitionPreferences>
speech_recognition_preferences_;
CefBrowserMainParts* main_parts_;
DISALLOW_COPY_AND_ASSIGN(CefBrowserContext);
};