aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpcpp/impl/codegen/intercepted_channel.h
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-10-26 16:11:48 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-10-26 16:11:48 -0700
commit1ea195b6f327136a86d80dd84c4bd85273894357 (patch)
treeb8889fb10c2417e69c1b8ad9cb2866750857b04b /include/grpcpp/impl/codegen/intercepted_channel.h
parent6a5f39db3cac4fd21b42eb5c4b4a63b80f4c88ca (diff)
Reviewer comments except for void * fixed
Diffstat (limited to 'include/grpcpp/impl/codegen/intercepted_channel.h')
-rw-r--r--include/grpcpp/impl/codegen/intercepted_channel.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/grpcpp/impl/codegen/intercepted_channel.h b/include/grpcpp/impl/codegen/intercepted_channel.h
index dd4b2d8712..612e56d862 100644
--- a/include/grpcpp/impl/codegen/intercepted_channel.h
+++ b/include/grpcpp/impl/codegen/intercepted_channel.h
@@ -45,14 +45,12 @@ class InterceptedChannel : public ChannelInterface {
InterceptedChannel(ChannelInterface* channel, int pos)
: channel_(channel), interceptor_pos_(pos) {}
- internal::Call CreateCall(const internal::RpcMethod& method,
- ClientContext* context,
- CompletionQueue* cq) override {
+ Call CreateCall(const RpcMethod& method, ClientContext* context,
+ CompletionQueue* cq) override {
return channel_->CreateCallInternal(method, context, cq, interceptor_pos_);
}
- void PerformOpsOnCall(internal::CallOpSetInterface* ops,
- internal::Call* call) override {
+ void PerformOpsOnCall(CallOpSetInterface* ops, Call* call) override {
return channel_->PerformOpsOnCall(ops, call);
}
void* RegisterMethod(const char* method) override {
@@ -79,4 +77,4 @@ class InterceptedChannel : public ChannelInterface {
} // namespace internal
} // namespace grpc
-#endif // GRPCPP_IMPL_CODEGEN_INTERCEPTED_CHANNEL_H \ No newline at end of file
+#endif // GRPCPP_IMPL_CODEGEN_INTERCEPTED_CHANNEL_H