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

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

Issue 969103002: Handle rename of SyntheticSmoothMouseDragGestureParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 e1fa59cd3f40194146da58b5ad896ea9b8e73ec5..aa4b09b6b8d828291721403513e5e15f4c3fb7f6 100644
--- a/tools/ipc_fuzzer/mutate/generate.cc
+++ b/tools/ipc_fuzzer/mutate/generate.cc
@@ -1009,10 +1009,9 @@ struct GenerateTraits<content::SyntheticGesturePacket> {
gesture_params.reset(params);
break;
}
- case content::SyntheticGestureParams::GestureType::
- SMOOTH_MOUSE_DRAG_GESTURE: {
- content::SyntheticSmoothMouseDragGestureParams* params =
- new content::SyntheticSmoothMouseDragGestureParams();
+ case content::SyntheticGestureParams::GestureType::SMOOTH_DRAG_GESTURE: {
+ content::SyntheticSmoothDragGestureParams* params =
+ new content::SyntheticSmoothDragGestureParams();
if (!GenerateParam(&params->start_point, generator))
return false;
if (!GenerateParam(&params->distances, generator))
« 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