| 1121 | : Writer(), proc_function_(func), cookie_(cookie) {} |
| 1122 | |
| 1123 | virtual bool Append(uint8_t* buf, size_t buf_size) override { |
| 1124 | return proc_function_(buf, buf_size, cookie_); |
| 1125 | } |
| 1126 | |
| 1127 | private: |
| 1128 | ProcessZipEntryFunction proc_function_; |
nothing calls this directly
no outgoing calls
no test coverage detected