node::ObjectWrap how had a handle() method.

This commit is contained in:
Cheng Zhao 2013-12-10 14:15:14 +08:00
parent 4ec4b01218
commit f9c41f33e5

View file

@ -29,9 +29,6 @@ class EventEmitter : public node::ObjectWrap {
bool Emit(const std::string& name);
bool Emit(const std::string& name, base::ListValue* args);
// Small accessor to return handle_, this follows Google C++ Style.
v8::Persistent<v8::Object> handle() const { return handle_; }
protected:
explicit EventEmitter(v8::Handle<v8::Object> wrapper);