2019-04-30 16:45:48 +00:00
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/electron_gpu_client.h"
|
2019-04-30 16:45:48 +00:00
|
|
|
|
|
|
|
#include "base/environment.h"
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2019-04-30 16:45:48 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronGpuClient::ElectronGpuClient() = default;
|
2019-04-30 16:45:48 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronGpuClient::PreCreateMessageLoop() {
|
2019-04-30 16:45:48 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
auto env = base::Environment::Create();
|
|
|
|
if (env->HasVar("ELECTRON_DEFAULT_ERROR_MODE"))
|
|
|
|
SetErrorMode(GetErrorMode() & ~SEM_NOGPFAULTERRORBOX);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|