mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Update to Chromium revision 85305.
- Use the angle library for GL support (issue #136). - Add a workaround for the SyncRequestProxy deadlock problem (issue #192). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@233 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -12,6 +12,7 @@
|
||||
#include "browser_webblobregistry_impl.h"
|
||||
|
||||
#include "build/build_config.h"
|
||||
#include "net/socket/client_socket_pool_manager.h"
|
||||
|
||||
#if defined(OS_WIN)
|
||||
#include <Objbase.h>
|
||||
@ -34,7 +35,11 @@ void CefProcessIOThread::Init() {
|
||||
// Initializes the COM library on the current thread.
|
||||
CoInitialize(NULL);
|
||||
#endif
|
||||
|
||||
|
||||
// Increase max sockets per group as a workaround for the SyncRequestProxy
|
||||
// deadlock problem (issue #192).
|
||||
net::ClientSocketPoolManager::set_max_sockets_per_group(15);
|
||||
|
||||
FilePath cache_path(_Context->cache_path());
|
||||
request_context_ = new BrowserRequestContext(cache_path,
|
||||
net::HttpCache::NORMAL, false);
|
||||
|
Reference in New Issue
Block a user