Chromium Code Reviews| Index: chrome/browser/ipc_fuzzer_host.h |
| diff --git a/chrome/browser/ipc_fuzzer_host.h b/chrome/browser/ipc_fuzzer_host.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f734070d72f882d9c085062e0bf30eada36bc44d |
| --- /dev/null |
| +++ b/chrome/browser/ipc_fuzzer_host.h |
| @@ -0,0 +1,16 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_IPC_FUZZER_HOST_H_ |
| +#define CHROME_BROWSER_IPC_FUZZER_HOST_H_ |
| + |
| +#include "content/public/browser/render_process_host.h" |
| + |
| +namespace chrome { |
|
Tom Sepez
2013/07/12 18:47:20
Does this whole thing get an ifdef?
aedla
2013/07/15 16:12:08
I actually put this file to ipc_fuzzer.gypi, so it
|
| + |
| +void SendTestcaseToIpcFuzzer(content::RenderProcessHost* host); |
| + |
| +} // namespace chrome |
| + |
| +#endif // CHROME_BROWSER_IPC_FUZZER_HOST_H_ |