node_bindings_win.h 560 B

1234567891011121314151617181920212223
  1. // Copyright (c) 2013 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ELECTRON_SHELL_COMMON_NODE_BINDINGS_WIN_H_
  5. #define ELECTRON_SHELL_COMMON_NODE_BINDINGS_WIN_H_
  6. #include "shell/common/node_bindings.h"
  7. namespace electron {
  8. class NodeBindingsWin : public NodeBindings {
  9. public:
  10. explicit NodeBindingsWin(BrowserEnvironment browser_env);
  11. private:
  12. // NodeBindings
  13. void PollEvents() override;
  14. };
  15. } // namespace electron
  16. #endif // ELECTRON_SHELL_COMMON_NODE_BINDINGS_WIN_H_