| Index: third_party/brotli/dec/decode.h
|
| diff --git a/third_party/brotli/dec/decode.h b/third_party/brotli/dec/decode.h
|
| index 9efd34a65306e4d0a28542605668339f5d38ecef..834a7b5485a454c6860ed8ebdda05851c64b0fe4 100644
|
| --- a/third_party/brotli/dec/decode.h
|
| +++ b/third_party/brotli/dec/decode.h
|
| @@ -32,7 +32,9 @@ typedef enum {
|
| /* Successfully completely done */
|
| BROTLI_RESULT_SUCCESS = 1,
|
| /* Partially done, but must be called again with more input */
|
| - BROTLI_RESULT_PARTIAL = 2
|
| + BROTLI_RESULT_NEEDS_MORE_INPUT = 2,
|
| + /* Partially done, but must be called again with more output */
|
| + BROTLI_RESULT_NEEDS_MORE_OUTPUT = 3
|
| } BrotliResult;
|
|
|
| /* Sets *decoded_size to the decompressed size of the given encoded stream. */
|
|
|