linux: Add dummy implementation of node bindings.

This commit is contained in:
Cheng Zhao 2014-02-14 14:39:57 +00:00
parent e3d5b62000
commit 526aaecc52
3 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,24 @@
// Copyright (c) 2014 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.
#include "common/node_bindings_linux.h"
namespace atom {
NodeBindingsLinux::NodeBindingsLinux(bool is_browser)
: NodeBindings(is_browser) {
}
NodeBindingsLinux::~NodeBindingsLinux() {
}
void NodeBindingsLinux::PollEvents() {
}
// static
NodeBindings* NodeBindings::Create(bool is_browser) {
return new NodeBindingsLinux(is_browser);
}
} // namespace at