|
|
@ -55,10 +55,11 @@ class CronetChannelCredentialsImpl final : public ChannelCredentials { |
|
|
|
} |
|
|
|
} |
|
|
|
void* engine_; |
|
|
|
void* engine_; |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
} // namespace grpc
|
|
|
|
std::shared_ptr<ChannelCredentials> CronetChannelCredentials(void* engine) { |
|
|
|
namespace grpc_impl { |
|
|
|
|
|
|
|
std::shared_ptr<grpc_impl::ChannelCredentials> CronetChannelCredentials( |
|
|
|
|
|
|
|
void* engine) { |
|
|
|
return std::shared_ptr<ChannelCredentials>( |
|
|
|
return std::shared_ptr<ChannelCredentials>( |
|
|
|
new CronetChannelCredentialsImpl(engine)); |
|
|
|
new grpc::CronetChannelCredentialsImpl(engine)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} // namespace grpc_impl
|
|
|
|
} // namespace grpc
|
|
|
|
|
|
|
|