2014-10-31 12:17:05 -06:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 03:49:37 -06:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-13 09:05:13 -06:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 00:34:31 -07:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_NODE_BINDINGS_MAC_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_NODE_BINDINGS_MAC_H_
|
2013-04-13 09:05:13 -06:00
|
|
|
|
2014-03-15 19:37:04 -06:00
|
|
|
#include "base/compiler_specific.h"
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/common/node_bindings.h"
|
2013-07-21 23:02:02 -06:00
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
namespace electron {
|
2013-04-13 09:05:13 -06:00
|
|
|
|
|
|
|
class NodeBindingsMac : public NodeBindings {
|
|
|
|
public:
|
2017-03-08 01:33:44 -07:00
|
|
|
explicit NodeBindingsMac(BrowserEnvironment browser_env);
|
2014-01-18 01:56:46 -07:00
|
|
|
|
2013-04-13 09:05:13 -06:00
|
|
|
private:
|
2015-01-23 22:05:32 -07:00
|
|
|
void PollEvents() override;
|
2013-04-13 09:05:13 -06:00
|
|
|
};
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
} // namespace electron
|
2013-04-13 09:05:13 -06:00
|
|
|
|
2021-11-22 00:34:31 -07:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_NODE_BINDINGS_MAC_H_
|