| Index: tools/ipc_fuzzer/mutate/rand_util.h
|
| diff --git a/tools/ipc_fuzzer/mutate/rand_util.h b/tools/ipc_fuzzer/mutate/rand_util.h
|
| index 8872abcb2f8b066ec982744efd4f8997990e15f8..888d0e472b07db52dc243b534431fd2faf8ec1fd 100644
|
| --- a/tools/ipc_fuzzer/mutate/rand_util.h
|
| +++ b/tools/ipc_fuzzer/mutate/rand_util.h
|
| @@ -35,6 +35,10 @@ inline bool RandEvent(uint32 frequency) {
|
| return RandInRange(frequency) == 0;
|
| }
|
|
|
| +inline size_t RandElementCount() {
|
| + return RandU32() % 10;
|
| +}
|
| +
|
| } // namespace ipc_fuzzer
|
|
|
| #endif // TOOLS_IPC_FUZZER_MUTATE_RAND_UTIL_H_
|
|
|