| 5027 | class ContentProviderAdapter { |
| 5028 | public: |
| 5029 | explicit ContentProviderAdapter( |
| 5030 | ContentProviderWithoutLength &&content_provider) |
| 5031 | : content_provider_(content_provider) {} |
| 5032 | |
| 5033 | bool operator()(size_t offset, size_t, DataSink &sink) { |
| 5034 | return content_provider_(offset, sink); |
nothing calls this directly
no outgoing calls
no test coverage detected