fix: libuv hang when nodeIntegrationInSubframes enabled (#27582)
This commit is contained in:
parent
980b32fce7
commit
642d6fca91
3 changed files with 19 additions and 2 deletions
|
@ -159,6 +159,12 @@ class NodeBindings {
|
|||
// Isolate data used in creating the environment
|
||||
node::IsolateData* isolate_data_ = nullptr;
|
||||
|
||||
#if defined(OS_WIN)
|
||||
HANDLE handle_;
|
||||
#else
|
||||
int handle_ = -1;
|
||||
#endif
|
||||
|
||||
base::WeakPtrFactory<NodeBindings> weak_factory_{this};
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(NodeBindings);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue