From f9c41f33e5aa40b364def70ae1c9c9fe65aee9f8 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 10 Dec 2013 14:15:14 +0800 Subject: [PATCH] node::ObjectWrap how had a handle() method. --- browser/api/atom_api_event_emitter.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/browser/api/atom_api_event_emitter.h b/browser/api/atom_api_event_emitter.h index aec37d7f1685..dd2292238601 100644 --- a/browser/api/atom_api_event_emitter.h +++ b/browser/api/atom_api_event_emitter.h @@ -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 handle() const { return handle_; } - protected: explicit EventEmitter(v8::Handle wrapper);