Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: tools/ipc_fuzzer/fuzzer/fuzzer.cc

Issue 1906403003: Removed gpu::ValueState from IPC fuzzer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/fuzzer/fuzzer.cc
diff --git a/tools/ipc_fuzzer/fuzzer/fuzzer.cc b/tools/ipc_fuzzer/fuzzer/fuzzer.cc
index c1fb9d2e446768017f61b9ccfb1acf7f5fcf9498..0adcf6f1440f216d90495f517a9b874cec88a3aa 100644
--- a/tools/ipc_fuzzer/fuzzer/fuzzer.cc
+++ b/tools/ipc_fuzzer/fuzzer/fuzzer.cc
@@ -1253,17 +1253,6 @@ struct FuzzTraits<gpu::MailboxHolder> {
};
template <>
-struct FuzzTraits<gpu::ValueState> {
- static bool Fuzz(gpu::ValueState* p, Fuzzer* fuzzer) {
- if (!FuzzParamArray(&p->float_value[0], 4, fuzzer))
- return false;
- if (!FuzzParamArray(&p->int_value[0], 4, fuzzer))
- return false;
- return true;
- }
-};
-
-template <>
struct FuzzTraits<GURL> {
static bool Fuzz(GURL* p, Fuzzer* fuzzer) {
if (!fuzzer->ShouldGenerate()) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698