Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 gRPC Support | |
| 2 === | |
| 3 | |
| 4 This directory contains the interface and implementation of the API to use | |
| 5 an external network stack from gRPC. The implementation is essentially a thin | |
| 6 wrapper around net::BidirectionalStream. The API specifies that the caller to | |
| 7 gRPC will pass in an opaque binary blob (stream_engine) that can be used to | |
| 8 created binary streams. In Chromium, this binary blob is a | |
| 9 net::URLRequestContextGetter, which is used by grpc_support::BidirectionalStream | |
| 10 to drive a net::BidirectionalStream. | |
| 11 | |
| 12 Currently Cronet (//components/cronet/ios) is the only consumer of this API, | |
| 13 but eventually code inside of Chromium should be able to use gRPC by providing | |
| 14 a net::URLRequestContextGetter. | |
|
blundell
2016/10/06 08:31:08
Would it be worth it to make a simple test that ex
Garrett Casto
2016/10/06 21:58:27
I can file a bug for this, but currently gRPC does
| |
| OLD | NEW |