2014-10-31 12:17:05 -06:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-04-25 03:49:37 -06:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2014-02-14 07:39:57 -07:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 00:34:31 -07:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_NODE_BINDINGS_LINUX_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_NODE_BINDINGS_LINUX_H_
|
2014-02-14 07:39:57 -07:00
|
|
|
|
2016-08-26 16:30:02 -06:00
|
|
|
#include "base/compiler_specific.h"
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/common/node_bindings.h"
|
2014-02-14 07:39:57 -07:00
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
namespace electron {
|
2014-02-14 07:39:57 -07:00
|
|
|
|
|
|
|
class NodeBindingsLinux : public NodeBindings {
|
|
|
|
public:
|
2017-03-08 01:33:44 -07:00
|
|
|
explicit NodeBindingsLinux(BrowserEnvironment browser_env);
|
2014-02-20 22:21:02 -07:00
|
|
|
|
2014-02-14 07:39:57 -07:00
|
|
|
private:
|
2024-06-20 02:49:07 -06:00
|
|
|
// NodeBindings
|
2015-01-23 22:05:32 -07:00
|
|
|
void PollEvents() override;
|
2014-02-14 07:39:57 -07:00
|
|
|
|
2014-02-20 22:21:02 -07:00
|
|
|
// Epoll to poll for uv's backend fd.
|
|
|
|
int epoll_;
|
2014-02-14 07:39:57 -07:00
|
|
|
};
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
} // namespace electron
|
2014-02-14 07:39:57 -07:00
|
|
|
|
2021-11-22 00:34:31 -07:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_NODE_BINDINGS_LINUX_H_
|