Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrevor Norris <trev.norris@gmail.com>2013-09-27 21:30:02 +0400
committerTrevor Norris <trev.norris@gmail.com>2013-11-01 01:17:51 +0400
commit8b8e3b67980d5be9feb03839c2821bd8be3680a3 (patch)
treee777901c8b5c760ee6355c96e1bc928f56bbf185 /src/stream_wrap.h
parentefa62fd9cc817434206d9fd8592b7bbeaa240e9c (diff)
async-wrap: integrate with WeakObject
Making WeakObject inherit from AsyncWrap allows us to peak into almost all the MakeCallback calls in Node internals.
Diffstat (limited to 'src/stream_wrap.h')
-rw-r--r--src/stream_wrap.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stream_wrap.h b/src/stream_wrap.h
index 374e7c75cea..ed8c53ebe87 100644
--- a/src/stream_wrap.h
+++ b/src/stream_wrap.h
@@ -88,8 +88,6 @@ class StreamWrapCallbacks {
uv_handle_type pending);
virtual int DoShutdown(ShutdownWrap* req_wrap, uv_shutdown_cb cb);
- v8::Handle<v8::Object> Self();
-
protected:
inline StreamWrap* wrap() const {
return wrap_;