2f2cbce9b9
On Window node doesn't outputing as GUI program, so we have to switch to chromium's implementation. Hacking into node (like what we did before this commit) would sometimes make the outputing blocked.
33 lines
963 B
C++
33 lines
963 B
C++
// 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 ATOM_COMMON_API_ATOM_BINDINGS_
|
|
#define ATOM_COMMON_API_ATOM_BINDINGS_
|
|
|
|
#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.
|
|
virtual void BindTo(v8::Handle<v8::Object> process);
|
|
|
|
private:
|
|
static v8::Handle<v8::Value> Binding(const v8::Arguments& args);
|
|
static v8::Handle<v8::Value> Crash(const v8::Arguments& args);
|
|
static v8::Handle<v8::Value> ActivateUVLoop(const v8::Arguments& args);
|
|
static v8::Handle<v8::Value> Log(const v8::Arguments& args);
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBindings);
|
|
};
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_COMMON_API_ATOM_BINDINGS_
|