mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Linux: Add multi-threaded message loop support (issue #2512)
This commit is contained in:
@ -11,7 +11,7 @@
|
||||
namespace client {
|
||||
|
||||
// Represents a singleton hidden window that acts as a temporary parent for
|
||||
// popup browsers.
|
||||
// popup browsers. Only accessed on the UI thread.
|
||||
class TempWindowWin {
|
||||
public:
|
||||
// Returns the singleton window handle.
|
||||
@ -20,6 +20,8 @@ class TempWindowWin {
|
||||
private:
|
||||
// A single instance will be created/owned by RootWindowManager.
|
||||
friend class RootWindowManager;
|
||||
// Allow deletion via scoped_ptr only.
|
||||
friend struct base::DefaultDeleter<TempWindowWin>;
|
||||
|
||||
TempWindowWin();
|
||||
~TempWindowWin();
|
||||
|
Reference in New Issue
Block a user