Chrome Release Bot (LUCI) 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
..
include 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
test 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
BUILD.gn 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
DEPS 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
DIR_METADATA 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
OWNERS 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
README.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
bidirectional_stream.cc 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
bidirectional_stream.h 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
bidirectional_stream_c.cc 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
bidirectional_stream_unittest.cc 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago

README.md

gRPC Support

This directory contains the interface and implementation of the API to use an external network stack from gRPC. The implementation is essentially a thin wrapper around net::BidirectionalStream. The API specifies that the caller to gRPC will pass in an opaque binary blob (stream_engine) that can be used to created binary streams. In Chromium, this binary blob is a net::URLRequestContextGetter, which is used by grpc_support::BidirectionalStream to drive a net::BidirectionalStream.

Currently Cronet (//components/cronet/ios) is the only consumer of this API, but eventually code inside of Chromium should be able to use gRPC by providing a net::URLRequestContextGetter.