2016-07-11 09:29:03 +03:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 23:46:59 +03:00
|
|
|
#include "shell/browser/unresponsive_suppressor.h"
|
2016-07-11 09:29:03 +03:00
|
|
|
|
2019-06-20 00:23:04 +03:00
|
|
|
namespace electron {
|
2016-07-11 09:29:03 +03:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
int g_suppress_level = 0;
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
bool IsUnresponsiveEventSuppressed() {
|
|
|
|
return g_suppress_level > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnresponsiveSuppressor::UnresponsiveSuppressor() {
|
|
|
|
g_suppress_level++;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnresponsiveSuppressor::~UnresponsiveSuppressor() {
|
|
|
|
g_suppress_level--;
|
|
|
|
}
|
|
|
|
|
2019-06-20 00:23:04 +03:00
|
|
|
} // namespace electron
|