mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Update to Chromium revision 59193.
- Use Mesa for off-screen rendering. - Add support for the FileSystem API and "blob" schema. - Set User-Agent product version to "Chrome/7.0.517.0" git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@102 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -8,6 +8,7 @@
|
||||
#include "browser_appcache_system.h"
|
||||
#include "browser_resource_loader_bridge.h"
|
||||
#include "browser_socket_stream_bridge.h"
|
||||
#include "browser_webblobregistry_impl.h"
|
||||
|
||||
#include "build/build_config.h"
|
||||
|
||||
@ -39,6 +40,8 @@ void CefProcessIOThread::Init() {
|
||||
|
||||
BrowserAppCacheSystem::InitializeOnIOThread(request_context_);
|
||||
BrowserSocketStreamBridge::InitializeOnIOThread(request_context_);
|
||||
BrowserWebBlobRegistryImpl::InitializeOnIOThread(
|
||||
request_context_->blob_storage_controller());
|
||||
}
|
||||
|
||||
void CefProcessIOThread::CleanUp() {
|
||||
@ -48,6 +51,7 @@ void CefProcessIOThread::CleanUp() {
|
||||
MessageLoop::current()->RunAllPending();
|
||||
|
||||
BrowserSocketStreamBridge::Cleanup();
|
||||
BrowserWebBlobRegistryImpl::Cleanup();
|
||||
|
||||
_Context->set_request_context(NULL);
|
||||
request_context_ = NULL;
|
||||
|
Reference in New Issue
Block a user