fix: gin_helper::Promise in GPUInfoManager must be destroyed before destroying Node/V8 (#46470)
* fix: gin_helper::Promise in GPUInfoManager must be destroyed before destroying Node/V8 Co-authored-by: Yang Liu <ouyangliu.leo@gmail.com> * fix: use CleanedUpAtExit to control the lifetime of GPUInfoManager Co-authored-by: Yang Liu <ouyangliu.leo@gmail.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Yang Liu <ouyangliu.leo@gmail.com>
This commit is contained in:
parent
69a38fa5aa
commit
e4554f9536
2 changed files with 6 additions and 2 deletions
|
@ -17,7 +17,9 @@
|
|||
namespace electron {
|
||||
|
||||
GPUInfoManager* GPUInfoManager::GetInstance() {
|
||||
return base::Singleton<GPUInfoManager>::get();
|
||||
// will be deleted by CleanedUpAtExit::DoCleanup
|
||||
static GPUInfoManager* instance = new GPUInfoManager();
|
||||
return instance;
|
||||
}
|
||||
|
||||
GPUInfoManager::GPUInfoManager()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue