Initialize node in browser process.
This commit is contained in:
parent
e49861b45b
commit
f853fc3df5
7 changed files with 90 additions and 3 deletions
26
common/node_bindings.h
Normal file
26
common/node_bindings.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
// 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:
|
||||
NodeBindings();
|
||||
virtual ~NodeBindings();
|
||||
|
||||
// Setup everything including V8, libuv and node.js main script.
|
||||
void Initialize();
|
||||
|
||||
private:
|
||||
DISALLOW_COPY_AND_ASSIGN(NodeBindings);
|
||||
};
|
||||
|
||||
} // namespace at
|
||||
|
||||
#endif // RAVE_COMMON_NODE_BINDINGS_
|
Loading…
Add table
Add a link
Reference in a new issue