| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef TOOLS_IPC_FUZZER_MUTATE_FUZZER_H_ | 5 #ifndef TOOLS_IPC_FUZZER_MUTATE_FUZZER_H_ |
| 6 #define TOOLS_IPC_FUZZER_MUTATE_FUZZER_H_ | 6 #define TOOLS_IPC_FUZZER_MUTATE_FUZZER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 typedef std::vector<FuzzerFunction> FuzzerFunctionVector; | 77 typedef std::vector<FuzzerFunction> FuzzerFunctionVector; |
| 78 void PopulateFuzzerFunctionVector(FuzzerFunctionVector* function_vector); | 78 void PopulateFuzzerFunctionVector(FuzzerFunctionVector* function_vector); |
| 79 | 79 |
| 80 // Since IPC::Message can be serialized, we also track a global function vector | 80 // Since IPC::Message can be serialized, we also track a global function vector |
| 81 // to handle generation of new messages while fuzzing. | 81 // to handle generation of new messages while fuzzing. |
| 82 extern FuzzerFunctionVector g_function_vector; | 82 extern FuzzerFunctionVector g_function_vector; |
| 83 | 83 |
| 84 } // namespace ipc_fuzzer | 84 } // namespace ipc_fuzzer |
| 85 | 85 |
| 86 #endif // TOOLS_IPC_FUZZER_MUTATE_FUZZER_H_ | 86 #endif // TOOLS_IPC_FUZZER_MUTATE_FUZZER_H_ |
| OLD | NEW |