2013-04-14 07:36:48 +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.
|
|
|
|
|
2014-03-16 00:58:59 +00:00
|
|
|
#ifndef ATOM_COMMON_API_ATOM_BINDINGS_H_
|
|
|
|
#define ATOM_COMMON_API_ATOM_BINDINGS_H_
|
2013-04-14 07:36:48 +00:00
|
|
|
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
#include "v8/include/v8.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class AtomBindings {
|
|
|
|
public:
|
|
|
|
AtomBindings();
|
|
|
|
virtual ~AtomBindings();
|
|
|
|
|
|
|
|
// Add process.atom_binding function, which behaves like process.binding but
|
|
|
|
// load native code from atom-shell instead.
|
2013-04-17 12:05:43 +00:00
|
|
|
virtual void BindTo(v8::Handle<v8::Object> process);
|
|
|
|
|
2013-04-14 07:36:48 +00:00
|
|
|
private:
|
2013-12-11 07:48:19 +00:00
|
|
|
static void Binding(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
static void Crash(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
static void ActivateUVLoop(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
static void Log(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
static void GetCurrentStackTrace(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args);
|
2014-01-09 12:33:07 +00:00
|
|
|
static void ScheduleCallback(const v8::FunctionCallbackInfo<v8::Value>& args);
|
2013-04-14 07:36:48 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBindings);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-03-16 00:58:59 +00:00
|
|
|
#endif // ATOM_COMMON_API_ATOM_BINDINGS_H_
|