node_bindings_win.h 615 B

123456789101112131415161718192021222324252627
  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 ATOM_COMMON_NODE_BINDINGS_WIN_H_
  5. #define ATOM_COMMON_NODE_BINDINGS_WIN_H_
  6. #include "atom/common/node_bindings.h"
  7. #include "base/compiler_specific.h"
  8. namespace atom {
  9. class NodeBindingsWin : public NodeBindings {
  10. public:
  11. explicit NodeBindingsWin(BrowserEnvironment browser_env);
  12. virtual ~NodeBindingsWin();
  13. private:
  14. void PollEvents() override;
  15. DISALLOW_COPY_AND_ASSIGN(NodeBindingsWin);
  16. };
  17. } // namespace atom
  18. #endif // ATOM_COMMON_NODE_BINDINGS_WIN_H_