mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef:
- Add support for specifying the cache location (file path or in-memory) via a new 'cache_path' parameter to CefInitialize(). - Create popup windows with a NULL parent window handle so that they don't stay on top of the original application window. cefclient: - Properly handle address change and title change for popup windows. - Add a test for creating a popup window. - Define TEST_SINGLE_THREADED_MESSAGE_LOOP by default. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@18 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -44,7 +44,10 @@
|
||||
// |multi_threaded_message_loop| to true to have the message loop run in
|
||||
// a separate thread. If |multi_threaded_message_loop| is false than
|
||||
// the CefDoMessageLoopWork() function must be called from your message loop.
|
||||
bool CefInitialize(bool multi_threaded_message_loop);
|
||||
// Set |cache_path| to the location where cache data will be stored on disk.
|
||||
// If |cache_path| is empty an in-memory cache will be used for cache data.
|
||||
bool CefInitialize(bool multi_threaded_message_loop,
|
||||
const std::wstring& cache_path);
|
||||
|
||||
// This function should only be called once before the application exits.
|
||||
// Shut down the thread hosting the UI message loop and destroy any created
|
||||
|
Reference in New Issue
Block a user