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

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

Issue 2374183006: Remove GLFrameData from CompositorFrame. (Closed)
Patch Set: Rebase + fix includes. Created 4 years, 2 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
Index: tools/ipc_fuzzer/fuzzer/fuzzer.cc
diff --git a/tools/ipc_fuzzer/fuzzer/fuzzer.cc b/tools/ipc_fuzzer/fuzzer/fuzzer.cc
index ff57074b382d72b450df5a52f461ea0d4998504e..0cb80a287a084a29f5409aac94b317f2c891a660 100644
--- a/tools/ipc_fuzzer/fuzzer/fuzzer.cc
+++ b/tools/ipc_fuzzer/fuzzer/fuzzer.cc
@@ -689,12 +689,6 @@ struct FuzzTraits<cc::CompositorFrame> {
return false;
return true;
}
- case 1: {
- p->gl_frame_data.reset(new cc::GLFrameData());
- if (!FuzzParam(p->gl_frame_data.get(), fuzzer))
- return false;
- return true;
- }
default:
// Fuzz nothing to handle the no frame case.
return true;

Powered by Google App Engine
This is Rietveld 408576698