Avoid crash due to missing prerenderer support (issue #608).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@657 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-05-30 20:35:41 +00:00
parent 5c2e5eab8d
commit dbe75b1326
7 changed files with 32 additions and 0 deletions

View File

@ -24,6 +24,8 @@
#include "webkit/glue/webfileutilities_impl.h"
#include "webkit/glue/webkitplatformsupport_impl.h"
class BrowserPrerenderingSupport;
class BrowserWebKitInit : public webkit_glue::WebKitPlatformSupportImpl {
public:
BrowserWebKitInit();
@ -108,6 +110,7 @@ class BrowserWebKitInit : public webkit_glue::WebKitPlatformSupportImpl {
BrowserDomStorageSystem dom_storage_system_;
BrowserWebCookieJarImpl cookie_jar_;
scoped_refptr<BrowserWebBlobRegistryImpl> blob_registry_;
scoped_ptr<BrowserPrerenderingSupport> prerendering_support_;
};
#endif // CEF_LIBCEF_BROWSER_WEBKIT_INIT_H_