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

Unified Diff: tools/ipc_fuzzer/mutate/generate.cc

Issue 319493007: Remove PlatformFileInfo from ipc_fuzzer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/mutate/generate.cc
diff --git a/tools/ipc_fuzzer/mutate/generate.cc b/tools/ipc_fuzzer/mutate/generate.cc
index 9ed43b78dc0452b1d35f6a5e7ec3eb1681b47743..d741b7f3ac7f632b1ca5070d63f06105719804a8 100644
--- a/tools/ipc_fuzzer/mutate/generate.cc
+++ b/tools/ipc_fuzzer/mutate/generate.cc
@@ -515,19 +515,6 @@ struct GenerateTraits<base::TimeTicks> {
};
template <>
-struct GenerateTraits<base::PlatformFileInfo> {
- static bool Generate(base::PlatformFileInfo* p, Generator* generator) {
- return
- GenerateParam(&p->size, generator) &&
- GenerateParam(&p->is_directory, generator) &&
- GenerateParam(&p->last_modified, generator) &&
- GenerateParam(&p->last_accessed, generator) &&
- GenerateParam(&p->creation_time, generator);
- }
-};
-
-
-template <>
struct GenerateTraits<base::ListValue> {
static bool Generate(base::ListValue* p, Generator* generator) {
++g_depth;
« 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