2013-04-13 10:39:09 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef RAVE_COMMON_NODE_BINDINGS_
|
|
|
|
#define RAVE_COMMON_NODE_BINDINGS_
|
|
|
|
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class NodeBindings {
|
|
|
|
public:
|
2013-04-13 13:10:41 +00:00
|
|
|
NodeBindings(bool is_browser);
|
2013-04-13 10:39:09 +00:00
|
|
|
virtual ~NodeBindings();
|
|
|
|
|
|
|
|
// Setup everything including V8, libuv and node.js main script.
|
|
|
|
void Initialize();
|
|
|
|
|
|
|
|
private:
|
2013-04-13 13:10:41 +00:00
|
|
|
bool is_browser_;
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(NodeBindings);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace at
|
|
|
|
|
|
|
|
#endif // RAVE_COMMON_NODE_BINDINGS_
|