Commit 0c8b5e25 authored by mbarbella's avatar mbarbella Committed by Commit bot

Handle rename of SyntheticSmoothMouseDragGestureParams.

R=inferno@chromium.org
BUG=463217

Review URL: https://codereview.chromium.org/969103002

Cr-Commit-Position: refs/heads/master@{#318770}
parent 30f4cc56
...@@ -1009,10 +1009,9 @@ struct GenerateTraits<content::SyntheticGesturePacket> { ...@@ -1009,10 +1009,9 @@ struct GenerateTraits<content::SyntheticGesturePacket> {
gesture_params.reset(params); gesture_params.reset(params);
break; break;
} }
case content::SyntheticGestureParams::GestureType:: case content::SyntheticGestureParams::GestureType::SMOOTH_DRAG_GESTURE: {
SMOOTH_MOUSE_DRAG_GESTURE: { content::SyntheticSmoothDragGestureParams* params =
content::SyntheticSmoothMouseDragGestureParams* params = new content::SyntheticSmoothDragGestureParams();
new content::SyntheticSmoothMouseDragGestureParams();
if (!GenerateParam(&params->start_point, generator)) if (!GenerateParam(&params->start_point, generator))
return false; return false;
if (!GenerateParam(&params->distances, generator)) if (!GenerateParam(&params->distances, generator))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment