2016-07-11 06:29:03 +00: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 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_UNRESPONSIVE_SUPPRESSOR_H_
|
|
|
|
#define SHELL_BROWSER_UNRESPONSIVE_SUPPRESSOR_H_
|
2016-07-11 06:29:03 +00:00
|
|
|
|
|
|
|
#include "base/macros.h"
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2016-07-11 06:29:03 +00:00
|
|
|
|
|
|
|
bool IsUnresponsiveEventSuppressed();
|
|
|
|
|
|
|
|
class UnresponsiveSuppressor {
|
|
|
|
public:
|
|
|
|
UnresponsiveSuppressor();
|
|
|
|
~UnresponsiveSuppressor();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(UnresponsiveSuppressor);
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2016-07-11 06:29:03 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_UNRESPONSIVE_SUPPRESSOR_H_
|