aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/ext/call.cc
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-08-17 14:00:31 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-08-17 14:00:31 -0700
commit4a1474f12f106123462cfcaf92c3c2e22a0b1404 (patch)
treeb005d8a87fed2cd01e57c640dd32648f58fbf2f0 /src/node/ext/call.cc
parent0636d7bb8d8008ac09d09bb8859dee3f98aebaac (diff)
Moved write flag constants to base module
Diffstat (limited to 'src/node/ext/call.cc')
-rw-r--r--src/node/ext/call.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/node/ext/call.cc b/src/node/ext/call.cc
index 3256f41dc7..a720f9eed6 100644
--- a/src/node/ext/call.cc
+++ b/src/node/ext/call.cc
@@ -464,10 +464,6 @@ void Call::Init(Handle<Object> exports) {
NanNew<FunctionTemplate>(GetPeer)->GetFunction());
NanAssignPersistent(fun_tpl, tpl);
Handle<Function> ctr = tpl->GetFunction();
- ctr->Set(NanNew("WRITE_BUFFER_HINT"),
- NanNew<Uint32, uint32_t>(GRPC_WRITE_BUFFER_HINT));
- ctr->Set(NanNew("WRITE_NO_COMPRESS"),
- NanNew<Uint32, uint32_t>(GRPC_WRITE_NO_COMPRESS));
exports->Set(NanNew("Call"), ctr);
constructor = new NanCallback(ctr);
}