| 183 | |
| 184 | public: |
| 185 | BrotliDecoderWrapper() : decoder_(BrotliDecoderCreateInstance(nullptr, nullptr, nullptr)) { |
| 186 | if (!decoder_) { |
| 187 | throw Error(ErrorCode::kerMallocFailed); |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | ~BrotliDecoderWrapper() { |
| 192 | BrotliDecoderDestroyInstance(decoder_); |