aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/transport/cronet/transport/cronet_transport.c
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-09-07 14:43:47 -0700
committerGravatar GitHub <noreply@github.com>2017-09-07 14:43:47 -0700
commit8941f607d682d49f0b7c901bffd3e52941e4c5f9 (patch)
tree3b8d2b29e0abef75ce1d4de983b9c6dfb183d24f /src/core/ext/transport/cronet/transport/cronet_transport.c
parentb13c8cb03f863cbc207d7e6e17c966e6a4ef5350 (diff)
parentd4ac3a156feb36b1e26cef7851dfc8e7923e5f2a (diff)
Merge pull request #12369 from markdroth/call_combiner
Second attempt at call combiner PR
Diffstat (limited to 'src/core/ext/transport/cronet/transport/cronet_transport.c')
-rw-r--r--src/core/ext/transport/cronet/transport/cronet_transport.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/ext/transport/cronet/transport/cronet_transport.c b/src/core/ext/transport/cronet/transport/cronet_transport.c
index 765c13c65e..587a3b83b5 100644
--- a/src/core/ext/transport/cronet/transport/cronet_transport.c
+++ b/src/core/ext/transport/cronet/transport/cronet_transport.c
@@ -1429,10 +1429,6 @@ static void destroy_stream(grpc_exec_ctx *exec_ctx, grpc_transport *gt,
static void destroy_transport(grpc_exec_ctx *exec_ctx, grpc_transport *gt) {}
-static char *get_peer(grpc_exec_ctx *exec_ctx, grpc_transport *gt) {
- return NULL;
-}
-
static grpc_endpoint *get_endpoint(grpc_exec_ctx *exec_ctx,
grpc_transport *gt) {
return NULL;
@@ -1451,7 +1447,6 @@ static const grpc_transport_vtable grpc_cronet_vtable = {
perform_op,
destroy_stream,
destroy_transport,
- get_peer,
get_endpoint};
grpc_transport *grpc_create_cronet_transport(void *engine, const char *target,