| Index: net/spdy/fuzzing/hpack_fuzz_util.h
|
| diff --git a/net/spdy/fuzzing/hpack_fuzz_util.h b/net/spdy/fuzzing/hpack_fuzz_util.h
|
| index a15a3fd29951fc7b770a728c79723749722f0d07..3ee64e6b3fe718308c4eb9061da2f0a4693fcbb6 100644
|
| --- a/net/spdy/fuzzing/hpack_fuzz_util.h
|
| +++ b/net/spdy/fuzzing/hpack_fuzz_util.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef NET_SPDY_FUZZING_HPACK_FUZZ_UTIL_H_
|
| #define NET_SPDY_FUZZING_HPACK_FUZZ_UTIL_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -82,7 +85,7 @@ class NET_EXPORT_PRIVATE HpackFuzzUtil {
|
| // Flips random bits within |buffer|. The total number of flips is
|
| // |flip_per_thousand| bits for every 1,024 bytes of |buffer_length|,
|
| // rounding up.
|
| - static void FlipBits(uint8* buffer,
|
| + static void FlipBits(uint8_t* buffer,
|
| size_t buffer_length,
|
| size_t flip_per_thousand);
|
| };
|
|
|