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"
|
|
|
|
|
2013-04-20 03:13:06 +00:00
|
|
|
namespace WebKit {
|
|
|
|
class WebFrame;
|
|
|
|
}
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class NodeBindings {
|
|
|
|
public:
|
2013-04-13 15:05:13 +00:00
|
|
|
static NodeBindings* Create(bool is_browser);
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
virtual ~NodeBindings();
|
|
|
|
|
2013-04-14 07:36:48 +00:00
|
|
|
// Setup V8, libuv and the process object.
|
2013-04-13 15:05:13 +00:00
|
|
|
virtual void Initialize();
|
|
|
|
|
2013-04-14 07:36:48 +00:00
|
|
|
// Load node.js main script.
|
|
|
|
virtual void Load();
|
|
|
|
|
2013-04-20 03:13:06 +00:00
|
|
|
// Load cefode.js script under web frame.
|
|
|
|
virtual void BindTo(WebKit::WebFrame* frame);
|
|
|
|
|
2013-04-13 15:05:13 +00:00
|
|
|
// Prepare for message loop integration.
|
|
|
|
virtual void PrepareMessageLoop() = 0;
|
|
|
|
|
|
|
|
// Do message loop integration.
|
|
|
|
virtual void RunMessageLoop() = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit NodeBindings(bool is_browser);
|
2013-04-13 10:39:09 +00:00
|
|
|
|
2013-04-13 13:10:41 +00:00
|
|
|
bool is_browser_;
|
|
|
|
|
2013-04-14 09:33:44 +00:00
|
|
|
private:
|
2013-04-13 10:39:09 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(NodeBindings);
|
|
|
|
};
|
|
|
|
|
2013-04-14 09:33:44 +00:00
|
|
|
} // namespace atom
|
2013-04-13 10:39:09 +00:00
|
|
|
|
|
|
|
#endif // RAVE_COMMON_NODE_BINDINGS_
|