aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpcpp/impl/codegen/intercepted_channel.h
diff options
context:
space:
mode:
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